further changes to the Sybase / MSSQL storage stuff
[dbsrgits/DBIx-Class.git] / lib / DBIx / Class / Storage / DBI / Sybase / MSSQL.pm
1 package DBIx::Class::Storage::DBI::Sybase::MSSQL;
2
3 use strict;
4 use warnings;
5
6 use base qw/DBIx::Class::Storage::DBI::MSSQL DBIx::Class::Storage::DBI::Sybase/;
7
8 1;
9
10 =head1 NAME
11
12 DBIx::Class::Storage::DBI::Sybase::MSSQL - Storage::DBI subclass for MSSQL via
13 DBD::Sybase
14
15 =head1 SYNOPSIS
16
17 This subclass supports MSSQL connected via L<DBD::Sybase>.
18
19   $schema->storage_type('::DBI::Sybase::MSSQL');
20   $schema->connect_info('dbi:Sybase:....', ...);
21
22 =head1 AUTHORS
23
24 Brandon L Black <blblack@gmail.com>
25
26 =head1 LICENSE
27
28 You may distribute this code under the same terms as Perl itself.
29
30 =cut