1 package DBIx::Class::Storage::DBI::Sybase::MSSQL;
8 carp 'Setting of storage_type is redundant as connections through DBD::Sybase'
9 .' are now properly recognized and reblessed into the appropriate subclass'
10 .' (DBIx::Class::Storage::DBI::Sybase::Microsoft_SQL_Server in the'
11 .' case of MSSQL). Please remove the explicit call to'
12 .q/ $schema->storage_type('::DBI::Sybase::MSSQL')/
13 .', as this storage class has been deprecated in favor of the autodetected'
14 .' ::DBI::Sybase::Microsoft_SQL_Server';
17 use base qw/DBIx::Class::Storage::DBI::Sybase::Microsoft_SQL_Server/;
24 DBIx::Class::Storage::DBI::Sybase::MSSQL - (DEPRECATED) Legacy storage class for MSSQL via DBD::Sybase
28 Connections through DBD::Sybase are now correctly recognized and reblessed
29 into the appropriate subclass (L<DBIx::Class::Storage::DBI::Sybase::Microsoft_SQL_Server>
30 in the case of MSSQL). Please remove the explicit storage_type setting from your
35 This subclass supports MSSQL connected via L<DBD::Sybase>.
37 $schema->storage_type('::DBI::Sybase::MSSQL');
38 $schema->connect_info('dbi:Sybase:....', ...);
40 =head1 AUTHOR AND CONTRIBUTORS
42 See L<AUTHOR|DBIx::Class/AUTHOR> and L<CONTRIBUTORS|DBIx::Class/CONTRIBUTORS> in DBIx::Class
46 You may distribute this code under the same terms as Perl itself.