util.sql: Return failure if set_encoding() fails

This commit is contained in:
Matthew Wild 2015-07-08 15:10:25 +01:00
parent 0fc9766334
commit 9f5bd334c5

View file

@ -110,7 +110,10 @@ function engine:connect()
dbh:autocommit(false); -- don't commit automatically
self.conn = dbh;
self.prepared = {};
self:set_encoding();
local ok, err = self:set_encoding();
if not ok then
return ok, err;
end
local ok, err = self:onconnect();
if ok == false then
return ok, err;