fix base for mssql (can't be a sybase anymore)
Rafael Kitover [Thu, 4 Jun 2009 00:10:45 +0000 (00:10 +0000)]
lib/DBIx/Class/Storage/DBI/Sybase.pm
lib/DBIx/Class/Storage/DBI/Sybase/Microsoft_SQL_Server.pm

index 3fb9045..fe38359 100644 (file)
@@ -23,7 +23,6 @@ sub _rebless {
       bless $self, $subclass;
       $self->_rebless;
     } elsif (not $self->dbh->{syb_dynamic_supported}) {
-# probably real Sybase
       bless $self, 'DBIx::Class::Storage:DBI::Sybase::NoBindVars';
       $self->_rebless;
     }
index f7d3fd1..2c49ea1 100644 (file)
@@ -5,7 +5,7 @@ use warnings;
 
 use base qw/
   DBIx::Class::Storage::DBI::ODBC::Microsoft_SQL_Server
-  DBIx::Class::Storage::DBI::Sybase::NoBindVars
+  DBIx::Class::Storage::DBI::NoBindVars
 /;
 
 1;