Skip to content

Commit 2102da7

Browse files
authored
Embed sqlite amalgamation v3.45.2 source code (#64)
1 parent f316421 commit 2102da7

File tree

3 files changed

+218
-85
lines changed

3 files changed

+218
-85
lines changed

Sources/CSQLite/include/sqlite_nio_sqlite3.h

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -146,9 +146,9 @@ extern "C" {
146146
** [sqlite_nio_sqlite3_libversion_number()], [sqlite_nio_sqlite3_sourceid()],
147147
** [sqlite_version()] and [sqlite_source_id()].
148148
*/
149-
#define SQLITE_VERSION "3.45.1"
150-
#define SQLITE_VERSION_NUMBER 3045001
151-
#define SQLITE_SOURCE_ID "2024-01-30 16:01:20 e876e51a0ed5c5b3126f52e532044363a014bc594cfefa87ffb5b82257cc467a"
149+
#define SQLITE_VERSION "3.45.2"
150+
#define SQLITE_VERSION_NUMBER 3045002
151+
#define SQLITE_SOURCE_ID "2024-03-12 11:06:23 d8cd6d49b46a395b13955387d05e9e1a2a47e54fb99f3c9b59835bbefad6af77"
152152

153153
/*
154154
** CAPI3REF: Run-Time Library Version Numbers
@@ -420,6 +420,8 @@ typedef int (*sqlite3_callback)(void*,int,char**, char**);
420420
** the 1st parameter to sqlite_nio_sqlite3_exec() while sqlite_nio_sqlite3_exec() is running.
421421
** <li> The application must not modify the SQL statement text passed into
422422
** the 2nd parameter of sqlite_nio_sqlite3_exec() while sqlite_nio_sqlite3_exec() is running.
423+
** <li> The application must not dereference the arrays or string pointers
424+
** passed as the 3rd and 4th callback parameters after it returns.
423425
** </ul>
424426
*/
425427
SQLITE_API int sqlite_nio_sqlite3_exec(

0 commit comments

Comments
 (0)