diff options
author | stephan <stephan@noemail.net> | 2022-12-23 11:46:26 +0000 |
---|---|---|
committer | stephan <stephan@noemail.net> | 2022-12-23 11:46:26 +0000 |
commit | cc1cc9d7b78a6c932d7f6201106c7b4ef094ea30 (patch) | |
tree | 81001fdb01ea19c8ed822e9d800a5ff94c1d458a /ext/wasm/api/sqlite3-wasm.c | |
parent | dc02d5658b2d452de4d191f1e6e68b06aaf269af (diff) | |
download | sqlite-cc1cc9d7b78a6c932d7f6201106c7b4ef094ea30.tar.gz sqlite-cc1cc9d7b78a6c932d7f6201106c7b4ef094ea30.zip |
Initial pieces for binding the session API to JS. Far from complete. See [forum:210e36a1e3 | forum post 210e36a1e3] for the discussion.
FossilOrigin-Name: cd8c100808da1043fcf63555f48f30c90272c48c6627321ceb0a0995b34733d1
Diffstat (limited to 'ext/wasm/api/sqlite3-wasm.c')
-rw-r--r-- | ext/wasm/api/sqlite3-wasm.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/ext/wasm/api/sqlite3-wasm.c b/ext/wasm/api/sqlite3-wasm.c index a42ea68d4..34e7a63ee 100644 --- a/ext/wasm/api/sqlite3-wasm.c +++ b/ext/wasm/api/sqlite3-wasm.c @@ -102,9 +102,15 @@ #ifndef SQLITE_ENABLE_OFFSET_SQL_FUNC # define SQLITE_ENABLE_OFFSET_SQL_FUNC 1 #endif +#ifndef SQLITE_ENABLE_PREUPDATE_HOOK +# define SQLITE_ENABLE_PREUPDATE_HOOK 1 /*required by session extension*/ +#endif #ifndef SQLITE_ENABLE_RTREE # define SQLITE_ENABLE_RTREE 1 #endif +#ifndef SQLITE_ENABLE_SESSION +# define SQLITE_ENABLE_SESSION 1 +#endif #ifndef SQLITE_ENABLE_STMTVTAB # define SQLITE_ENABLE_STMTVTAB 1 #endif |