resolve conflict
[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/
c5ce7cd6 7 DBIx::Class::Storage::DBI::NoBindVars
8c44d0f2 8 DBIx::Class::Storage::DBI::ODBC::Microsoft_SQL_Server
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
20This subclass supports MSSQL connected via L<DBD::Sybase>.
21
22 $schema->storage_type('::DBI::Sybase::Microsoft_SQL_Server');
23 $schema->connect_info('dbi:Sybase:....', ...);
24
d4483998 25=head1 CAVEATS
98464041 26
d4483998 27This storage driver uses L<DBIx::Class::Storage::DBI::NoBindVars> as a base.
28This means that bind variables will be interpolated (properly quoted of course)
29into the SQL query itself, without using bind placeholders.
30
31More importantly this means that caching of prepared statements is explicitly
32disabled, as the interpolation renders it useless.
98464041 33
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