projects
/
dbsrgits/DBIx-Class.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
(parent:
16df8aa
)
Switch out one more reliance on connect_info
Peter Rabbitson [Mon, 10 Nov 2008 22:46:45 +0000 (22:46 +0000)]
lib/DBIx/Class/Storage/DBI/SQLite.pm
patch
|
blob
|
blame
|
history
diff --git
a/lib/DBIx/Class/Storage/DBI/SQLite.pm
b/lib/DBIx/Class/Storage/DBI/SQLite.pm
index
68d3ac3
..
e29c2ee
100644
(file)
--- a/
lib/DBIx/Class/Storage/DBI/SQLite.pm
+++ b/
lib/DBIx/Class/Storage/DBI/SQLite.pm
@@
-19,7
+19,7
@@
sub backup
$dir ||= './';
## Where is the db file?
- my $dsn = $self->connect_info()->[0];
+ my $dsn = $self->_dbi_connect_info()->[0];
my $dbname = $1 if($dsn =~ /dbname=([^;]+)/);
if(!$dbname)