fix a warning in SQLAHacks
[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
5a77aa8b 8 DBIx::Class::Storage::DBI::MSSQL
528accab 9/;
2ad62d97 10use mro 'c3';
98464041 11
121;
13
14=head1 NAME
15
5a77aa8b 16DBIx::Class::Storage::DBI::Sybase::Microsoft_SQL_Server - Support for Microsoft
17SQL Server via DBD::Sybase
98464041 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
5a77aa8b 32=head1 AUTHOR
98464041 33
5a77aa8b 34See L<DBIx::Class/CONTRIBUTORS>.
98464041 35
36=head1 LICENSE
37
38You may distribute this code under the same terms as Perl itself.
39
40=cut