summaryrefslogtreecommitdiffstats
path: root/config-db/OpenSLX/MetaDB/SQLite.pm
diff options
context:
space:
mode:
Diffstat (limited to 'config-db/OpenSLX/MetaDB/SQLite.pm')
-rw-r--r--config-db/OpenSLX/MetaDB/SQLite.pm2
1 files changed, 1 insertions, 1 deletions
diff --git a/config-db/OpenSLX/MetaDB/SQLite.pm b/config-db/OpenSLX/MetaDB/SQLite.pm
index 493f0a0a..4b574639 100644
--- a/config-db/OpenSLX/MetaDB/SQLite.pm
+++ b/config-db/OpenSLX/MetaDB/SQLite.pm
@@ -58,7 +58,7 @@ sub connect
vlog 1, "trying to connect to SQLite-database <$dbSpec>";
eval ('require DBD::SQLite; 1;')
or die _tr(qq[%s doesn't seem to be installed,
-so there is no support for %s available, sorry!\n], 'DBD::SQLite', 'SQLite');
+so there is no support for %s available, sorry!\n%s], 'DBD::SQLite', 'SQLite', $@);
$self->{'dbh'} = DBI->connect("dbi:SQLite:$dbSpec", undef, undef,
{PrintError => 0, AutoCommit => 1})
or confess _tr("Cannot connect to database <%s> (%s)",