diff options
author | Kim Alvefur <zash@zash.se> | 2015-07-05 18:00:05 +0200 |
---|---|---|
committer | Kim Alvefur <zash@zash.se> | 2015-07-05 18:00:05 +0200 |
commit | 31895cd45fbb41608ae19a3c02013d5ee5263f38 (patch) | |
tree | ffbe134470891e53fe689b44843c22b48c6b680b | |
parent | 21aa02fd1b769ae89fccfd2cd84756f918e2f152 (diff) | |
parent | 3dd49f5620ef6860767fee2904399a77e242e10e (diff) | |
download | prosody-31895cd45fbb41608ae19a3c02013d5ee5263f38.tar.gz prosody-31895cd45fbb41608ae19a3c02013d5ee5263f38.zip |
Merge 0.10->trunk
-rw-r--r-- | plugins/mod_storage_sql2.lua | 2 | ||||
-rw-r--r-- | plugins/sql.lib.lua | 9 | ||||
-rw-r--r-- | util/sql.lua | 4 |
3 files changed, 5 insertions, 10 deletions
diff --git a/plugins/mod_storage_sql2.lua b/plugins/mod_storage_sql2.lua index 9a9e6061..1702108c 100644 --- a/plugins/mod_storage_sql2.lua +++ b/plugins/mod_storage_sql2.lua @@ -413,10 +413,10 @@ local function upgrade_table(params, apply_changes) end local function normalize_params(params) - assert(params.driver and params.database, "Configuration error: Both the SQL driver and the database need to be specified"); if params.driver == "SQLite3" then params.database = resolve_relative_path(prosody.paths.data or ".", params.database or "prosody.sqlite"); end + assert(params.driver and params.database, "Configuration error: Both the SQL driver and the database need to be specified"); return params; end diff --git a/plugins/sql.lib.lua b/plugins/sql.lib.lua deleted file mode 100644 index 005ee45d..00000000 --- a/plugins/sql.lib.lua +++ /dev/null @@ -1,9 +0,0 @@ -local cache = module:shared("/*/sql.lib/util.sql"); - -if not cache._M then - prosody.unlock_globals(); - cache._M = require "util.sql"; - prosody.lock_globals(); -end - -return cache._M; diff --git a/util/sql.lua b/util/sql.lua index 5aa12f94..92032f43 100644 --- a/util/sql.lua +++ b/util/sql.lua @@ -111,8 +111,12 @@ function engine:connect() self.conn = dbh; self.prepared = {}; self:set_encoding(); + self:onconnect(); return true; end +function engine:onconnect() + -- Override from create_engine() +end function engine:execute(sql, ...) local success, err = self:connect(); if not success then return success, err; end |