LifeLua 30-05-2025
Documentation for LifeLua
|
SQLite3 functions. More...
Functions | |
sqlite3 | sqlite3.open (string path, number mode) |
table | sqlite3.query (sqlite3 db, string query) |
nil | sqlite3.close (sqlite3 db) |
Variables | |
number | SQLITE_OPEN_READONLY |
number | SQLITE_OPEN_READWRITE |
number | SQLITE_OPEN_CREATE |
number | SQLITE_OPEN_URI |
number | SQLITE_OPEN_NOMUTEX |
number | SQLITE_OPEN_FULLMUTEX |
Method calling will work on most of the functions here (e. g. sqlite3:query
& sqlite3:close
)
nil sqlite3.close | ( | sqlite3 | db | ) |
Closes an open database (also done automatically via garbage collecting)
sqlite3 sqlite3.open | ( | string | path, |
number | mode ) |
Opens an SQLite3 database
table sqlite3.query | ( | sqlite3 | db, |
string | query ) |
Executes a query in an open database