X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=lib%2FDBIx%2FClass%2FStorage%2FDBI%2FSybase%2FMicrosoft_SQL_Server.pm;h=08b1807186e95bee03b88dec050f188895af5305;hb=26283ee38f220f6c6bae720ea5a189c9c0f47f6f;hp=22661a85d2104570d7facf81cda52428d3d13058;hpb=322b7a6bb9b1c41935395b8fe809f2c36ac945dd;p=dbsrgits%2FDBIx-Class.git 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 22661a8..08b1807 100644 --- a/lib/DBIx/Class/Storage/DBI/Sybase/Microsoft_SQL_Server.pm +++ b/lib/DBIx/Class/Storage/DBI/Sybase/Microsoft_SQL_Server.pm @@ -4,17 +4,11 @@ use strict; use warnings; use base qw/ - DBIx::Class::Storage::DBI::Sybase::Common + DBIx::Class::Storage::DBI::Sybase::Base DBIx::Class::Storage::DBI::MSSQL /; use mro 'c3'; -sub new { - my $self = shift->next::method(@_); - $self->_rebless; - return $self; -} - sub _rebless { my $self = shift; my $dbh = $self->_get_dbh; @@ -24,11 +18,6 @@ sub _rebless { 'DBIx::Class::Storage::DBI::Sybase::Microsoft_SQL_Server::NoBindVars'; $self->_rebless; } - -# LongReadLen doesn't work with MSSQL through DBD::Sybase, and the default is -# huge on some versions of SQL server and can cause memory problems, so we -# fix it up here (see Sybase/Common.pm .) - $self->set_textsize; } 1;