mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 21:57:45 +03:00
mod_storage_sql2, util.sql: Set character encoding on every connect
This commit is contained in:
parent
f361945594
commit
655e1cde09
2 changed files with 1 additions and 2 deletions
|
@ -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();
|
||||
|
|
|
@ -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, ...)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue