diff options
Diffstat (limited to 'www/c3ref')
-rw-r--r-- | www/c3ref/c_source_id.html | 6 | ||||
-rw-r--r-- | www/c3ref/exec.html | 2 |
2 files changed, 5 insertions, 3 deletions
diff --git a/www/c3ref/c_source_id.html b/www/c3ref/c_source_id.html index 91a5a78..220b2ae 100644 --- a/www/c3ref/c_source_id.html +++ b/www/c3ref/c_source_id.html @@ -121,9 +121,9 @@ antiRobotDefense(); <h2>Compile-Time Library Version Numbers</h2> </div> <blockquote><pre> -#define SQLITE_VERSION "3.45.1" -#define SQLITE_VERSION_NUMBER 3045001 -#define SQLITE_SOURCE_ID "2024-01-30 16:01:20 e876e51a0ed5c5b3126f52e532044363a014bc594cfefa87ffb5b82257cc467a" +#define SQLITE_VERSION "3.45.2" +#define SQLITE_VERSION_NUMBER 3045002 +#define SQLITE_SOURCE_ID "2024-03-12 11:06:23 d8cd6d49b46a395b13955387d05e9e1a2a47e54fb99f3c9b59835bbefad6af77" </pre></blockquote> <p> The <a href="../c3ref/c_source_id.html">SQLITE_VERSION</a> C preprocessor macro in the sqlite3.h header diff --git a/www/c3ref/exec.html b/www/c3ref/exec.html index f892dab..98edb23 100644 --- a/www/c3ref/exec.html +++ b/www/c3ref/exec.html @@ -186,6 +186,8 @@ is a valid and open <a href="../c3ref/sqlite3.html">database connection</a>. the 1st parameter to sqlite3_exec() while sqlite3_exec() is running. <li> The application must not modify the SQL statement text passed into the 2nd parameter of sqlite3_exec() while sqlite3_exec() is running. +<li> The application must not dereference the arrays or string pointers +passed as the 3rd and 4th callback parameters after it returns. </ul> </p><p>See also lists of <a href="../c3ref/objlist.html">Objects</a>, |