From: Rafael Kitover Date: Thu, 4 Jun 2009 00:10:45 +0000 (+0000) Subject: fix base for mssql (can't be a sybase anymore) X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=f0070d01c1ebc3895551ff52580c544e180e7bcf;hp=6b1f5ef74ba9728a8587863b5034a43d7fbe705e;p=dbsrgits%2FDBIx-Class-Historic.git fix base for mssql (can't be a sybase anymore) --- diff --git a/lib/DBIx/Class/Storage/DBI/Sybase.pm b/lib/DBIx/Class/Storage/DBI/Sybase.pm index 3fb9045..fe38359 100644 --- a/lib/DBIx/Class/Storage/DBI/Sybase.pm +++ b/lib/DBIx/Class/Storage/DBI/Sybase.pm @@ -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; } diff --git a/lib/DBIx/Class/Storage/DBI/Sybase/Microsoft_SQL_Server.pm b/lib/DBIx/Class/Storage/DBI/Sybase/Microsoft_SQL_Server.pm index f7d3fd1..2c49ea1 100644 --- a/lib/DBIx/Class/Storage/DBI/Sybase/Microsoft_SQL_Server.pm +++ b/lib/DBIx/Class/Storage/DBI/Sybase/Microsoft_SQL_Server.pm @@ -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;