cc3ad12afbe86be773c0c6bbd4da6e4dc67897a4
[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/
7   DBIx::Class::Storage::DBI::ODBC::Microsoft_SQL_Server
8   DBIx::Class::Storage::DBI::NoBindVars
9   DBIx::Class::Storage::DBI::Sybase
10 /;
11
12 1;
13
14 =head1 NAME
15
16 DBIx::Class::Storage::DBI::Sybase::MSSQL - Storage::DBI subclass for MSSQL via
17 DBD::Sybase
18
19 =head1 SYNOPSIS
20
21 This subclass supports MSSQL connected via L<DBD::Sybase>.
22
23   $schema->storage_type('::DBI::Sybase::MSSQL');
24   $schema->connect_info('dbi:Sybase:....', ...);
25
26 =head1 BUGS
27
28 Currently, this doesn't work right unless you call C<Class::C3::reinitialize()>
29 after connecting.
30
31 =head1 AUTHORS
32
33 Brandon L Black <blblack@gmail.com>
34
35 Justin Hunter <justin.d.hunter@gmail.com>
36
37 =head1 LICENSE
38
39 You may distribute this code under the same terms as Perl itself.
40
41 =cut