Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Update HISTORY, remove obsolete file. |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | fsl_9y | trunk |
Files: | files | file ages | folders |
SHA1: |
dd7e65e22e5a56929aff6f1ed5033c5c |
User & Date: | e 2018-06-30 17:35:34 |
Context
2018-06-30
| ||
19:29 | Add test case for ticket [d54dc056330c] -- cannot reproduce. Leaf check-in: 697ae4953a user: e tags: trunk | |
17:35 | Update HISTORY, remove obsolete file. check-in: dd7e65e22e user: e tags: fsl_9y, trunk | |
17:23 | Update for Lua 5.4 and SQLite 3.24.0 check-in: 21ab5cda4d user: e tags: trunk | |
Changes
Changes to HISTORY.
1 2 3 4 5 6 7 |
2016-November-13 Version "0.9.4" Since the "0.9.3-devel" release of this Lua library... Add functions db:get_ptr() and sqlite3.open_ptr(db_ptr) to pass a db connection between threads. |
> > > > > > > > |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 |
2018-June-30 Version "0.9.5" Since the "0.9.4-devel" release of this Lua library... Lua 5.4 compatibility (backward compatible with Lua 5.3, 5.2, and Lua 5.1.5). 2016-November-13 Version "0.9.4" Since the "0.9.3-devel" release of this Lua library... Add functions db:get_ptr() and sqlite3.open_ptr(db_ptr) to pass a db connection between threads. |
Deleted lsqlite3complete-0.9.4-2.rockspec.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 |
package = "lsqlite3complete" version = "0.9.4-2" source = { url = "http://lua.sqlite.org/index.cgi/zip/lsqlite3_fsl09x.zip?uuid=fsl_9x", file = "lsqlite3_fsl09x.zip" } description = { summary = "A binding for Lua to the SQLite3 database library", detailed = [[ lsqlite3complete is a thin wrapper around the public domain SQLite3 database engine. SQLite3 is included and statically linked. (The dynamically linked alternative is lsqlite3). The lsqlite3complete module supports the creation and manipulation of SQLite3 databases. Most sqlite3 functions are called via an object-oriented interface to either database or SQL statement objects. ]], license = "MIT", homepage = "http://lua.sqlite.org/" } dependencies = { "lua >= 5.1, < 5.4" } build = { type = "builtin", modules = { lsqlite3complete = { sources = { "lsqlite3.c", "sqlite3.c" }, defines = {'LSQLITE_VERSION="0.9.4"', 'luaopen_lsqlite3=luaopen_lsqlite3complete'} }, }, platforms = { unix = { modules = { lsqlite3complete = { libraries = { "pthread", "m", "dl" } } } } }, copy_directories = { 'doc', 'examples' } } |
< < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < |