Ask for newer DBD::Pg in author mode, suggest the newer version otherwise (proper...
[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;
eabab5d0 5use mro 'c3';
528accab 6use base qw/
eabab5d0 7 DBIx::Class::Storage::DBI::Sybase::Base
528accab 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
9c541170 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
31=head1 AUTHORS
32
33Brandon L Black <blblack@gmail.com>
34
35Justin Hunter <justin.d.hunter@gmail.com>
36
37=head1 LICENSE
38
39You may distribute this code under the same terms as Perl itself.
40
41=cut