moved code to ::DBI::MSSQL and added DT inflation test
[dbsrgits/DBIx-Class.git] / lib / DBIx / Class / Storage / DBI / Sybase / Microsoft_SQL_Server.pm
1 package DBIx::Class::Storage::DBI::Sybase::Microsoft_SQL_Server;
2
3 use strict;
4 use warnings;
5
6 use base qw/
7   DBIx::Class::Storage::DBI::Sybase::Base
8   DBIx::Class::Storage::DBI::MSSQL
9 /;
10 use mro 'c3';
11
12 1;
13
14 =head1 NAME
15
16 DBIx::Class::Storage::DBI::Sybase::Microsoft_SQL_Server - Support for Microsoft
17 SQL Server via DBD::Sybase
18
19 =head1 SYNOPSIS
20
21 This subclass supports MSSQL server connections via L<DBD::Sybase>.
22
23 =head1 CAVEATS
24
25 This storage driver uses L<DBIx::Class::Storage::DBI::NoBindVars> as a base.
26 This means that bind variables will be interpolated (properly quoted of course)
27 into the SQL query itself, without using bind placeholders.
28
29 More importantly this means that caching of prepared statements is explicitly
30 disabled, as the interpolation renders it useless.
31
32 =head1 AUTHOR
33
34 See L<DBIx::Class/CONTRIBUTORS>.
35
36 =head1 LICENSE
37
38 You may distribute this code under the same terms as Perl itself.
39
40 =cut