projects
/
dbsrgits/DBIx-Class.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
(parent:
b49cd08
)
minor clean up
Rafael Kitover [Sat, 23 May 2009 21:04:01 +0000 (21:04 +0000)]
lib/DBIx/Class/Storage/DBI/Sybase.pm
patch
|
blob
|
blame
|
history
diff --git
a/lib/DBIx/Class/Storage/DBI/Sybase.pm
b/lib/DBIx/Class/Storage/DBI/Sybase.pm
index
0c18d6b
..
ec4fcf7
100644
(file)
--- a/
lib/DBIx/Class/Storage/DBI/Sybase.pm
+++ b/
lib/DBIx/Class/Storage/DBI/Sybase.pm
@@
-20,8
+20,8
@@
sub _rebless {
}
sub _dbh_last_insert_id {
- my $self = shift;
- ($self->_dbh->selectrow_array('select @@identity'))[0];
+ my ($self, $dbh, $source, $col) = @_;
+ return ($dbh->selectrow_array('select @@identity'))[0];
}
1;