From: Peter Rabbitson Date: Mon, 10 Nov 2008 22:46:45 +0000 (+0000) Subject: Switch out one more reliance on connect_info X-Git-Tag: v0.08240~247 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=12c9beeade5453c5a867406f30384a22e2f1b82d;p=dbsrgits%2FDBIx-Class.git Switch out one more reliance on connect_info --- diff --git a/lib/DBIx/Class/Storage/DBI/SQLite.pm b/lib/DBIx/Class/Storage/DBI/SQLite.pm index 68d3ac3..e29c2ee 100644 --- 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)