Fix for bug 66149: better error message on connection failures. Patch by shie9022@msmailhub.oulan.ou.edu (Alan Shields)

This commit is contained in:
dave%intrec.com 2001-02-02 03:29:26 +00:00
Родитель b025b6f6f8
Коммит 1a9256839e
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -91,7 +91,7 @@ sub ConnectToDatabase {
$::dbwritesallowed = 0;
}
$::db = DBI->connect("DBI:mysql:host=$::db_host;database=$name", $::db_user, $::db_pass)
|| die "Can't connect to database server.\n";
|| die $DBI::errstr;
}
}