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