try not to fuck mssql with the sybase crap
[dbsrgits/DBIx-Class.git] / lib / DBIx / Class / Storage / DBI / Sybase / MSSQL.pm
CommitLineData
81092e2d 1package DBIx::Class::Storage::DBI::Sybase::MSSQL;
2
3use strict;
4use warnings;
5
c5ce7cd6 6use base qw/
c5ce7cd6 7 DBIx::Class::Storage::DBI::NoBindVars
8c44d0f2 8 DBIx::Class::Storage::DBI::ODBC::Microsoft_SQL_Server
c5ce7cd6 9/;
81092e2d 10
111;
12
13=head1 NAME
14
15DBIx::Class::Storage::DBI::Sybase::MSSQL - Storage::DBI subclass for MSSQL via
16DBD::Sybase
17
18=head1 SYNOPSIS
19
20This subclass supports MSSQL connected via L<DBD::Sybase>.
21
22 $schema->storage_type('::DBI::Sybase::MSSQL');
23 $schema->connect_info('dbi:Sybase:....', ...);
24
35201834 25=head1 BUGS
26
27Currently, this doesn't work right unless you call C<Class::C3::reinitialize()>
28after connecting.
29
81092e2d 30=head1 AUTHORS
31
32Brandon L Black <blblack@gmail.com>
33
47d9646a 34Justin Hunter <justin.d.hunter@gmail.com>
35
81092e2d 36=head1 LICENSE
37
38You may distribute this code under the same terms as Perl itself.
39
40=cut