projects
/
dbsrgits/DBIx-Class.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
(parent:
6b1f5ef
)
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
patch
|
blob
|
blame
|
history
lib/DBIx/Class/Storage/DBI/Sybase/Microsoft_SQL_Server.pm
patch
|
blob
|
blame
|
history
diff --git
a/lib/DBIx/Class/Storage/DBI/Sybase.pm
b/lib/DBIx/Class/Storage/DBI/Sybase.pm
index
3fb9045
..
fe38359
100644
(file)
--- 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
(file)
--- 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;