Merge 'trunk' into 'sybase'
[dbsrgits/DBIx-Class.git] / lib / DBIx / Class / Storage / DBI / Sybase / Microsoft_SQL_Server.pm
1 package DBIx::Class::Storage::DBI::Sybase::Microsoft_SQL_Server;
2
3 use strict;
4 use warnings;
5
6 use base qw/
7   DBIx::Class::Storage::DBI::Sybase::Base
8   DBIx::Class::Storage::DBI::ODBC::Microsoft_SQL_Server
9   DBIx::Class::Storage::DBI::NoBindVars
10 /;
11 use mro 'c3';
12
13 1;
14
15 =head1 NAME
16
17 DBIx::Class::Storage::DBI::Sybase::Microsoft_SQL_Server - Storage::DBI subclass for MSSQL via
18 DBD::Sybase
19
20 =head1 SYNOPSIS
21
22 This subclass supports MSSQL server connections via L<DBD::Sybase>.
23
24 =head1 CAVEATS
25
26 This storage driver uses L<DBIx::Class::Storage::DBI::NoBindVars> as a base.
27 This means that bind variables will be interpolated (properly quoted of course)
28 into the SQL query itself, without using bind placeholders.
29
30 More importantly this means that caching of prepared statements is explicitly
31 disabled, as the interpolation renders it useless.
32
33 The actual driver code for MSSQL is in
34 L<DBIx::Class::Storage::DBI::ODBC::Microsoft_SQL_Server>.
35
36 =head1 AUTHORS
37
38 See L<DBIx::Class/CONTRIBUTORS>.
39
40 =head1 LICENSE
41
42 You may distribute this code under the same terms as Perl itself.
43
44 =cut