util.sql: Allow onconnect callback to fail connection to the DB by returning false, err

This commit is contained in:
Matthew Wild 2015-07-07 17:43:14 +01:00
parent 7573762c91
commit 137f763966

View file

@ -111,7 +111,10 @@ function engine:connect()
self.conn = dbh;
self.prepared = {};
self:set_encoding();
self:onconnect();
local ok, err = self:onconnect();
if ok == false then
return ok, err;
end
return true;
end
function engine:onconnect()