Switch to C3 mro throughout the ::Storage hierarchy (DBIx::Class brings in MRO::Compa...
[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;
2ad62d97 5
528accab 6use base qw/
eabab5d0 7 DBIx::Class::Storage::DBI::Sybase::Base
528accab 8 DBIx::Class::Storage::DBI::ODBC::Microsoft_SQL_Server
528accab 9/;
2ad62d97 10use mro 'c3';
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
9c541170 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
32=head1 AUTHORS
33
34Brandon L Black <blblack@gmail.com>
35
36Justin Hunter <justin.d.hunter@gmail.com>
37
38=head1 LICENSE
39
40You may distribute this code under the same terms as Perl itself.
41
42=cut