aboutsummaryrefslogtreecommitdiffstats
path: root/util/sql.lua
diff options
context:
space:
mode:
authorKim Alvefur <zash@zash.se>2013-10-28 22:07:16 +0100
committerKim Alvefur <zash@zash.se>2013-10-28 22:07:16 +0100
commite9935707592087e51ec0e6e63e3fd389407ebe9a (patch)
tree4648b821daf0aa3a8b8edacae44339d3fdd6c534 /util/sql.lua
parentd011ca8a325fc9bda520898a58a0c255d8c52968 (diff)
downloadprosody-e9935707592087e51ec0e6e63e3fd389407ebe9a.tar.gz
prosody-e9935707592087e51ec0e6e63e3fd389407ebe9a.zip
mod_storage_sql2, util.sql: Move code for setting encoding to util.sql
Diffstat (limited to 'util/sql.lua')
-rw-r--r--util/sql.lua11
1 files changed, 11 insertions, 0 deletions
diff --git a/util/sql.lua b/util/sql.lua
index b8c16e27..972940f7 100644
--- a/util/sql.lua
+++ b/util/sql.lua
@@ -276,6 +276,17 @@ function engine:_create_table(table)
end
return success;
end
+function engine:set_encoding() -- to UTF-8
+ if self.params.driver == "SQLite3" then return end
+ local set_names_query = "SET NAMES 'utf8';";
+ if self.params.driver == "MySQL" then
+ set_names_query = set_names_query:gsub(";$", " COLLATE 'utf8_bin';");
+ end
+ local success,err = engine:transaction(function() return engine:execute(set_names_query); end);
+ if not success then
+ log("error", "Failed to set database connection encoding to UTF8: %s", err);
+ end
+end
local engine_mt = { __index = engine };
local function db2uri(params)