Index: HISTORY ================================================================== --- HISTORY +++ HISTORY @@ -1,5 +1,24 @@ +2015-January-06 + +Version "0.9.3" + +Since the "0.9.2-devel" release of this Lua library... + +Added lversion() function to report library version, "0.9.3". + +Added db:load_extension() function to support SQLite extension libraries. + +Added some tests for new funcitons and Lua 5.3 64-bit integers in the database. + +Fixed longstanding bug: if db is no longer live, it is auto-closed by gc, but there may still +be live prepared statements. Executing these statements would produce an error. Prepared +statements now hold a reference to the db to prevent it from being collected while the prepared +statement is live. Manually closing the db will continue to finalize the statements, as before. + +Fixed bug in PUSH_INT64 macro for Lua < 5.3 introduced in version 0.9.2-devel. + 2015-January-04 Version "0.9.2-devel" Since the "0.9.1-devel" release of this Lua library... Index: doc/lsqlite3.wiki ================================================================== --- doc/lsqlite3.wiki +++ doc/lsqlite3.wiki @@ -213,11 +213,11 @@
sqlite3.version()-
Returns a string with SQLite version information, in the form 'x.y[.z]'.
+Returns a string with SQLite version information, in the form 'x.y[.z[.p]]'.
sqlite3.lversion()@@ -999,11 +999,11 @@ documentation http://www.sqlite.org/.
This is lsqlite3
version fsl_9u
, also known as "devel-0.9.2-1".
This is lsqlite3
version "0.9.3", also tagged as fsl_9w
.
lsqlite3
was developed by Tiago Dionizio and Doug Currie with