Database

Undocumented in source.

Members

Functions

escape
string escape(string sqlData)

Escapes data for inclusion into an sql string literal

query
ResultSet query(string sql, ...)

Just executes a query. It supports placeholders for parameters by using ? in the sql string. NOTE: it only accepts string, int, long, and null types. Others will fail runtime asserts.

queryImpl
ResultSet queryImpl(string sql, Variant[] args)

Actually implements the query for the database. The query() method below might be easier to use.

startTransaction
void startTransaction()

query to start a transaction, only here because sqlite is apparently different in syntax...

Meta