mod_storage_sql2, util.sql: Set character encoding on every connect

This commit is contained in:
Kim Alvefur 2014-12-11 09:18:39 +01:00
parent f361945594
commit 655e1cde09
2 changed files with 1 additions and 2 deletions

View file

@ -156,6 +156,7 @@ function engine:connect()
dbh:autocommit(false); -- don't commit automatically
self.conn = dbh;
self.prepared = {};
self:set_encoding();
return true;
end
function engine:execute(sql, ...)