[Bast-commits] r7219 - in
DBIx-Class/0.08/branches/sybase/lib/DBIx/Class/Storage/DBI: . Sybase
caelum at dev.catalyst.perl.org
caelum at dev.catalyst.perl.org
Wed Aug 5 09:02:26 GMT 2009
Author: caelum
Date: 2009-08-05 09:02:26 +0000 (Wed, 05 Aug 2009)
New Revision: 7219
Modified:
DBIx-Class/0.08/branches/sybase/lib/DBIx/Class/Storage/DBI/Cursor.pm
DBIx-Class/0.08/branches/sybase/lib/DBIx/Class/Storage/DBI/Sybase/Microsoft_SQL_Server.pm
Log:
fix a couple minor issues after pull from trunk
Modified: DBIx-Class/0.08/branches/sybase/lib/DBIx/Class/Storage/DBI/Cursor.pm
===================================================================
--- DBIx-Class/0.08/branches/sybase/lib/DBIx/Class/Storage/DBI/Cursor.pm 2009-08-05 08:46:51 UTC (rev 7218)
+++ DBIx-Class/0.08/branches/sybase/lib/DBIx/Class/Storage/DBI/Cursor.pm 2009-08-05 09:02:26 UTC (rev 7219)
@@ -128,7 +128,7 @@
my ($storage, $dbh, $self) = @_;
$self->_check_dbh_gen;
- $self->sth->finish if $self->sth->{Active};
+ $self->sth->finish if $self->sth && $self->sth->{Active};
$self->sth(undef);
my ($rv, $sth) = $storage->_select(@{$self->{args}});
return @{$sth->fetchall_arrayref};
Modified: DBIx-Class/0.08/branches/sybase/lib/DBIx/Class/Storage/DBI/Sybase/Microsoft_SQL_Server.pm
===================================================================
--- DBIx-Class/0.08/branches/sybase/lib/DBIx/Class/Storage/DBI/Sybase/Microsoft_SQL_Server.pm 2009-08-05 08:46:51 UTC (rev 7218)
+++ DBIx-Class/0.08/branches/sybase/lib/DBIx/Class/Storage/DBI/Sybase/Microsoft_SQL_Server.pm 2009-08-05 09:02:26 UTC (rev 7219)
@@ -6,7 +6,6 @@
use base qw/
DBIx::Class::Storage::DBI::Sybase::Base
DBIx::Class::Storage::DBI::MSSQL
- DBIx::Class::Storage::DBI::NoBindVars
/;
use mro 'c3';
@@ -14,7 +13,7 @@
my $self = shift;
my $dbh = $self->_dbh;
- if (not $self->_placeholders_supported) {
+ if (not $self->placeholders_with_type_conversion_supported) {
bless $self,
'DBIx::Class::Storage::DBI::Sybase::Microsoft_SQL_Server::NoBindVars';
$self->_rebless;
More information about the Bast-commits
mailing list