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
528accab 6use base qw/
7 DBIx::Class::Storage::DBI::ODBC::Microsoft_SQL_Server
c5ce7cd6 8 DBIx::Class::Storage::DBI::NoBindVars
528accab 9 DBIx::Class::Storage::DBI::Sybase
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
21This subclass supports MSSQL connected via L<DBD::Sybase>.
22
23 $schema->storage_type('::DBI::Sybase::Microsoft_SQL_Server');
24 $schema->connect_info('dbi:Sybase:....', ...);
25
d4483998 26=head1 CAVEATS
98464041 27
d4483998 28This storage driver uses L<DBIx::Class::Storage::DBI::NoBindVars> as a base.
29This means that bind variables will be interpolated (properly quoted of course)
30into the SQL query itself, without using bind placeholders.
31
32More importantly this means that caching of prepared statements is explicitly
33disabled, as the interpolation renders it useless.
98464041 34
35=head1 AUTHORS
36
37Brandon L Black <blblack@gmail.com>
38
39Justin Hunter <justin.d.hunter@gmail.com>
40
41=head1 LICENSE
42
43You may distribute this code under the same terms as Perl itself.
44
45=cut