Commit graph

10 commits

Author SHA1 Message Date
Kim Alvefur
654edd37bb util.sql: SQLCipher support
This enables use of encrypted databases if LuaDBI or LuaSQLite3 has been
linked against SQLCipher. Using `LD_PRELOAD` may work as well.

Requires SQLCipher >= 4.0.0 due to the use of UPSERT
2025-01-23 16:38:56 +01:00
Kim Alvefur
022159d0f0 util.sqlite3: Clean up unused variables
Many leftovers from the earlier version of util.sql this was based on
and cleanup applied there since then.
2023-07-22 14:54:17 +02:00
Kim Alvefur
dd37d17425 util.sqlite3: Don't cache prepared statements for one-off queries
The :execute method is mainly used for one-off queries such as creating
tables and indices. There is no need to cache this prepared statement,
as those queries are only done on startup.

Further, prepared statements can't be reused without being reset, so
this was likely broken anyway.
2023-06-10 22:20:26 +02:00
Kim Alvefur
95687d9ddd util.sqlite3: Deduplicate query methods
There were 3 very similar methods:
-   :execute()
-   :execute_query()
-   :execute_update()

The first one returns the prepared statement and is mainly used
internally in the library for CREATE statements.

The later two only really differ in how the results are returned.
Those two are one main method and one small one that only picks out the
iterator.
2023-06-10 22:02:15 +02:00
Kim Alvefur
eaf8765ee9 util.sqlite3: Fix indentation 2023-06-10 22:00:43 +02:00
Kim Alvefur
43531740f9 util: Prefix module imports with prosody namespace 2023-03-17 16:23:16 +01:00
Kim Alvefur
0147b972e0 mod_storage_sql: Record connection to database as module status
Allows retrieving this in e.g. a health reporting module

Thanks pfak
2023-01-30 00:38:26 +01:00
Kim Alvefur
e3836f22e0 util.sqlite3: Skip prepared statements when no parameters are given
Seems CREATE INDEX is unhappy as a prepared statement. Perhaps because
the table has not been COMMIT-ed yet?
2022-08-01 17:25:40 +02:00
Kim Alvefur
320d4032a2 util.sqlite3: Create util.error registry from headers
The 'type' fields are a first guess.
2021-10-01 02:27:53 +02:00
Kim Alvefur
2dada39e39 util.sqlite3: SQLite3-only variant of util.sql using LuaSQLite3
http://lua.sqlite.org/
2022-08-01 15:23:33 +02:00