Functions for working with SQLite relational databases.
sqlite | Functions for working with SQLite relational databases. |
Types | |
Database | Opaque type representing a SQLite database. |
Row | Represents a row in a results. |
Rows | Represents a query result set. |
Functions | |
open | Open a database in the given named file. |
exec | Execute a SQL statement in the given database and return the result set. |
execRaw | Execute a SQL statement in the given database and return the result set. |
close | Close a database. |
Open a database in the given named file.
DECLARE NATIVE FUNCTION open( name: String ): Database
Execute a SQL statement in the given database and return the result set.
DECLARE NATIVE FUNCTION exec( db: Database, sql: String, parameters: Dictionary<String> ): Rows
Execute a SQL statement in the given database and return the result set.
DECLARE NATIVE FUNCTION execRaw( db: Database, sql: String ): Rows
Close a database.
DECLARE NATIVE FUNCTION close( db: Database )