Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Link to slqlite docs on multiple library copies. |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
ba0ad5e0f0637370a214d705fdd5c3ae |
User & Date: | javier 2021-09-07 13:51:37 |
Context
2023-06-23
| ||
21:43 |
Add support for comercial CEROD feature if available
Contributed by: Rudolf Adamkovič Leaf check-in: ffcc9234f0 user: javier tags: trunk, fsl_9z, v0.9.6 | |
2022-11-28
| ||
00:26 |
[Author: Paul K.] Add session support.
Apply patch "as is" from the github diff. check-in: 062ecf97a5 user: javier tags: session | |
2021-09-07
| ||
13:51 | Link to slqlite docs on multiple library copies. check-in: ba0ad5e0f0 user: javier tags: trunk | |
13:20 | Add note warning against statically linking separate copies of SQLite. check-in: 21108a8672 user: javier tags: trunk | |
Changes
Changes to doc/lsqlite3.wiki.
︙ | ︙ | |||
138 139 140 141 142 143 144 | To use this module you need the SQLite3 library (DLL or .so). You can get it from <a href="http://www.sqlite.org/">http://www.sqlite.org/</a> </p> <p>The module <code>lsqlite3complete</code> links SQLite3 statically. The SQLite3 amalgamation source code is included in the LuaSQLite 3 distribution. This can simplify deployment, but might result in more than one copy of the SQLite library if other parts | | | > | 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 | To use this module you need the SQLite3 library (DLL or .so). You can get it from <a href="http://www.sqlite.org/">http://www.sqlite.org/</a> </p> <p>The module <code>lsqlite3complete</code> links SQLite3 statically. The SQLite3 amalgamation source code is included in the LuaSQLite 3 distribution. This can simplify deployment, but might result in more than one copy of the SQLite library if other parts of the code also include it. See <a href="http://www.sqlite.org/howtocorrupt.html#multiple_copies_of_sqlite_linked_into_the_same_application">http://www.sqlite.org/howtocorrupt.html</a> for an explanation on why it would be a bad idea.</p> <p>Both modules support the creation and manipulation of SQLite3 databases. After a <code>sqlite3 = require('lsqlite3')</code> (or <code>sqlite3 = require('lsqlite3complete')</code>) the exported functions are called with prefix <code>sqlite3</code>. However, most sqlite3 functions are called via an object-oriented interface to either database or SQL statement objects; see below for details.</p> <p>This documentation does not attempt to describe how SQLite3 itself |
︙ | ︙ |