mirror of
https://github.com/bjc/prosody.git
synced 2025-04-06 22:57:38 +03:00
util.sql: Catch errors from LuaDBI connect (Fixes #568)
This commit is contained in:
parent
c42992594d
commit
c00adb21f4
1 changed files with 2 additions and 1 deletions
|
@ -102,11 +102,12 @@ function engine:connect()
|
|||
local params = self.params;
|
||||
assert(params.driver, "no driver")
|
||||
log("debug", "Connecting to [%s] %s...", params.driver, params.database);
|
||||
local dbh, err = DBI.Connect(
|
||||
local ok, dbh, err = pcall(DBI.Connect,
|
||||
params.driver, params.database,
|
||||
params.username, params.password,
|
||||
params.host, params.port
|
||||
);
|
||||
if not ok then return ok, dbh; end
|
||||
if not dbh then return nil, err; end
|
||||
dbh:autocommit(false); -- don't commit automatically
|
||||
self.conn = dbh;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue