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=9666a00627de93761b649dd3551ba5608c187c40;hb=8d56944855eaaaa09ee8563ec0700d7e1b54337a;hp=6a20ba4ab2d0c0adab0c5ffce05652dd30447489;hpb=eb7f8fb74b10ef5f3ef254edfc07773979a5e0b4;p=dbsrgits%2FDBIx-Class-Historic.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 6a20ba4..9666a00 100644 --- a/lib/DBIx/Class/Storage/DBI/Sybase/Microsoft_SQL_Server.pm +++ b/lib/DBIx/Class/Storage/DBI/Sybase/Microsoft_SQL_Server.pm @@ -4,7 +4,7 @@ use strict; use warnings; use base qw/ - DBIx::Class::Storage::DBI::Sybase::Base + DBIx::Class::Storage::DBI::Sybase DBIx::Class::Storage::DBI::MSSQL /; use mro 'c3'; @@ -13,19 +13,42 @@ sub _rebless { my $self = shift; my $dbh = $self->_get_dbh; - if (not $self->_placeholders_supported) { + if (not $self->_typeless_placeholders_supported) { bless $self, 'DBIx::Class::Storage::DBI::Sybase::Microsoft_SQL_Server::NoBindVars'; $self->_rebless; } +} + +sub _run_connection_actions { + my $self = shift; + + # 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 ::DBI::Sybase.pm) + $self->set_textsize; -# 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. - my $text_size = eval { $self->_dbi_connect_info->[-1]->{LongReadLen} } || - 32768; # the DBD::Sybase default + $self->next::method(@_); +} + +sub _dbh_begin_work { + my $self = shift; - $dbh->do("set textsize $text_size"); + $self->_get_dbh->do('BEGIN TRAN'); +} + +sub _dbh_commit { + my $self = shift; + my $dbh = $self->_dbh + or $self->throw_exception('cannot COMMIT on a disconnected handle'); + $dbh->do('COMMIT'); +} + +sub _dbh_rollback { + my $self = shift; + my $dbh = $self->_dbh + or $self->throw_exception('cannot ROLLBACK on a disconnected handle'); + $dbh->do('ROLLBACK'); } 1;