The options for this api database.
Undocumented.
The sqlite database.
Options for the api database.
Date at which the database started.
The assigned tables for this database.
Axios object.
Gets all available tables from this database.
An array of table data.
Gets the host full url to api.
Adds a table to this database.
The table to add.
The database this table was added to.
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.
Opens the database.
The callback fn that will be used once database is open.
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.
Sanitizes given options to api database.
The options to merge.
An object with the new options.
Validates given password.
The password to validate.
Boolean indicating whether this password is correct.
Generated using TypeDoc
Manages api databases.