Runs the specified query against the database and returns the result as an array of objects of format { columnName: value }.
The SQL to execute. ? is used as placeholder for bound values.
The parameters, which should replace the '?' placeholders.
Returns the SQLGrammarCompiler responsible for compiling QueryBuilders into actual SQL queries. This may be a raw SQLGrammarCompiler or a subclass for database-specific minor changes to the queries.
Runs the specified insert query and returns the ID of the inserted row.
Runs the specified query against the database and voids the results (if any).
The SQL to execute. ? is used as placeholder for bound values.
The parameters, which should replace the '?' placeholders.
Generated using TypeDoc
Represents an engine for an SQL-based database.