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