update Sybase docs
[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
528accab 6use base qw/
8c44d0f2 7 DBIx::Class::Storage::DBI::ODBC::Microsoft_SQL_Server
f0070d01 8 DBIx::Class::Storage::DBI::NoBindVars
528accab 9/;
98464041 10
111;
12
13=head1 NAME
14
15DBIx::Class::Storage::DBI::Sybase::Microsoft_SQL_Server - Storage::DBI subclass for MSSQL via
16DBD::Sybase
17
18=head1 SYNOPSIS
19
5608593e 20This subclass supports MSSQL server connections via L<DBD::Sybase>.
98464041 21
d4483998 22=head1 CAVEATS
98464041 23
d4483998 24This storage driver uses L<DBIx::Class::Storage::DBI::NoBindVars> as a base.
25This means that bind variables will be interpolated (properly quoted of course)
26into the SQL query itself, without using bind placeholders.
27
28More importantly this means that caching of prepared statements is explicitly
29disabled, as the interpolation renders it useless.
98464041 30
7e8cecc1 31The actual driver code for MSSQL is in
32L<DBIx::Class::Storage::DBI::ODBC::Microsoft_SQL_Server>.
33
98464041 34=head1 AUTHORS
35
36Brandon L Black <blblack@gmail.com>
37
38Justin Hunter <justin.d.hunter@gmail.com>
39
40=head1 LICENSE
41
42You may distribute this code under the same terms as Perl itself.
43
44=cut