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