The options for this database.
The sqlite database.
The options for this database.
Date at which the database started.
The assigned tables for this database.
Gets all available tables from this database.
An array of table data.
Validates given options.
The options to check.
The options with their default values.
Gets multiple rows from this database.
The table to get rows from.
The options to apply for this query.
The rows found from this query.
Returns the corresponding array from given map.
The map to convert.
The array from the map.
Closes this database connection.
Connects the database to its corresponding file.
The connected database.
Creates a table.
The name for this table
The table that was created.
Deletes rows from a database, if no options are given it will clean the entire table.
The table to delete rows from.
Options for this query.
Affected rows and changes from the sqlite table.
Gets a single row from the database.
The table to get a row from.
The options for this query.
A row from the database, if it exists.
Get total row count in a table.
The table to get row count from.
The options for this query.
An object with the count property.
Gets the position of a row in a table.
The table to get row position from.
Options for sorting this query.
Options to filter this query.
The position or positions of rows (and possibly their data if multiple).
Gets data from a table.
The name of the table to get its data.
The table data if it exists.
Insert one or multiple rows into the database. If a row with given primary key exists, this will throw an error.
The table to set these rows to.
The row or rows to insert.
The sqlite changes happened in the table.
Resolves a string or object into a table.
The name of the table.
Whether to suppress the error if table does not exist.
The table found.
Sets a row into the database (or updates existing one).
The table to perform this action on.
The data to set.
Options for this query.
Sqlite result for this setter.
Deletes garbage from this database.
Generated using TypeDoc
Database wrapper class for sqlite.