diff options
author | Matthew Wild <mwild1@gmail.com> | 2013-04-18 11:13:40 +0100 |
---|---|---|
committer | Matthew Wild <mwild1@gmail.com> | 2013-04-18 11:13:40 +0100 |
commit | 8fb8d2f75c067efc8fc79680aa5435e9ec516de3 (patch) | |
tree | a3a9a8ff5de3a20a633b079bd5e5e81eaaad39af /plugins/sql.lib.lua | |
parent | d5c0bf4fee3e12634c741be73122392b5fbcb6db (diff) | |
download | prosody-8fb8d2f75c067efc8fc79680aa5435e9ec516de3.tar.gz prosody-8fb8d2f75c067efc8fc79680aa5435e9ec516de3.zip |
mod_storage_sql2 (temporary name), sql.lib, util.sql: New SQL API supporting cross-module connection sharing, transactions and Things - a work in progress
Diffstat (limited to 'plugins/sql.lib.lua')
-rw-r--r-- | plugins/sql.lib.lua | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/plugins/sql.lib.lua b/plugins/sql.lib.lua new file mode 100644 index 00000000..005ee45d --- /dev/null +++ b/plugins/sql.lib.lua @@ -0,0 +1,9 @@ +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; |