moved code to ::DBI::MSSQL and added DT inflation test
[dbsrgits/DBIx-Class.git] / lib / DBIx / Class / Storage / DBI / ODBC / Microsoft_SQL_Server.pm
1 package DBIx::Class::Storage::DBI::ODBC::Microsoft_SQL_Server;
2 use strict;
3 use warnings;
4
5 use base qw/DBIx::Class::Storage::DBI::MSSQL/;
6 use mro 'c3';
7
8 1;
9
10 __END__
11
12 =head1 NAME
13
14 DBIx::Class::Storage::DBI::ODBC::Microsoft_SQL_Server - Support specific
15 to Microsoft SQL Server over ODBC
16
17 =head1 DESCRIPTION
18
19 This class implements support specific to Microsoft SQL Server over ODBC.  It is
20 loaded automatically by by DBIx::Class::Storage::DBI::ODBC when it detects a
21 MSSQL back-end.
22
23 Most of the functionality is provided from the superclass
24 L<DBIx::Class::Storage::DBI::MSSQL>.
25
26 =head1 AUTHOR
27
28 See L<DBIx::Class/CONTRIBUTORS>.
29
30 =head1 LICENSE
31
32 You may distribute this code under the same terms as Perl itself.
33
34 =cut
35 # vim: sw=2 sts=2