The @sqlite
module is just a single class @sqlite
, which represents a
SQLite database.
The version of SQLite compiled into Axiom is 3.33.0, and has the following extensions enabled:
Create or open a SQLite database at path.
If path is ":memory:" (default), an in-memory database will be created.
db = sqlite('data.db') print db.schema() #print the schema print db.query('SELECT * FROM entries WHERE rowid = ?',[2]) #print row with rowid=2
Query the database.
If args are passed as an array, question marks
(?
) should be used as placeholders within sql.
If args are passed as an object, a colon followed by the key
(like :name
) should be used as placeholders within sql.
If args is not an array or object, its value will be bound to
the first question mark (?
) within sql.
Headers only appear if there are 1 or more rows in the result. If there are 0 rows in the result, headers will not appear even if headers is true.
The the rowid of the last inserted row.
Every row in every table in SQLite has a implicit nonzero integer autoincrement field called 'rowid', which can be used to uniquely identify a row within a table.
Get all tables matching glob.
Get the schema of the database.
Subsequent modifications ('ALTER TABLE...') are reflected within the schema.
Get just the indices within the database.
Get the version of SQLite used.
Should return the following value:
'3.33.0 2020-08-14 13:23:32 fca8dc8b578f215a969cd899336378966156154710873e68b3d9ac5881b0alt2'