X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=lib%2FDBIx%2FClass%2FStorage%2FDBI%2FSybase%2FMSSQL.pm;h=aeb6aab20aa0006585eeb522cf403004967121f6;hb=0c11ad0ee5c8407f6b87d6e15c62a1b445076dc0;hp=040fac2a29fcd383811b1688b42b39ab445f59c7;hpb=9c5411701b749216630298f5e9056de2ac0a30fe;p=dbsrgits%2FDBIx-Class.git diff --git a/lib/DBIx/Class/Storage/DBI/Sybase/MSSQL.pm b/lib/DBIx/Class/Storage/DBI/Sybase/MSSQL.pm index 040fac2..aeb6aab 100644 --- a/lib/DBIx/Class/Storage/DBI/Sybase/MSSQL.pm +++ b/lib/DBIx/Class/Storage/DBI/Sybase/MSSQL.pm @@ -3,7 +3,7 @@ package DBIx::Class::Storage::DBI::Sybase::MSSQL; use strict; use warnings; -use Carp::Clan qw/^DBIx::Class/; +use DBIx::Class::Carp; carp 'Setting of storage_type is redundant as connections through DBD::Sybase' .' are now properly recognized and reblessed into the appropriate subclass' @@ -14,7 +14,8 @@ carp 'Setting of storage_type is redundant as connections through DBD::Sybase' .' ::DBI::Sybase::Microsoft_SQL_Server'; -use base qw/DBIx::Class::Storage::DBI::ODBC::Microsoft_SQL_Server DBIx::Class::Storage::DBI::Sybase/; +use base qw/DBIx::Class::Storage::DBI::Sybase::Microsoft_SQL_Server/; +use mro 'c3'; 1; @@ -36,16 +37,9 @@ This subclass supports MSSQL connected via L. $schema->storage_type('::DBI::Sybase::MSSQL'); $schema->connect_info('dbi:Sybase:....', ...); -=head1 BUGS +=head1 AUTHOR AND CONTRIBUTORS -Currently, this doesn't work right unless you call C -after connecting. - -=head1 AUTHORS - -Brandon L Black - -Justin Hunter +See L and L in DBIx::Class =head1 LICENSE