in reply to DBI->connect using 'old-style' syntax is deprecated and will be an error in future versions
I found this bit, straight from Tim Bunce (June 97, DBI-user mail list) which shows the difference between the two methods:my $dbh = DBI->connect("DBI:Pg:dbname=$database",$user,$password );
Old-style: DBI->connect('dbname', $user, $pass, 'Driver'); New-style: DBI->connect('dbi:Driver:dbname', $user, $pass);
|
|---|