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

@ -113,8 +113,6 @@ do -- process options to get a db connection
--local dburi = db2uri(params);
engine = mod_sql:create_engine(params);
engine:set_encoding();
if module:get_option("sql_manage_tables", true) then
-- Automatically create table, ignore failure (table probably already exists)
create_table();

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, ...)