Skip to main content

DatabaseSync

class DatabaseSync

Deno compatibility

This module is not implemented.

This class represents a single connection to a SQLite database. All APIs exposed by this class execute synchronously.

Constructors Jump to heading

new
Jump to headingDatabaseSync(
location: string,
)

Constructs a new DatabaseSync instance.

Closes the database connection. An exception is thrown if the database is not open. This method is a wrapper around sqlite3_close_v2().

Jump to headingexec(sql: string): void

This method allows one or more SQL statements to be executed without returning any results. This method is useful when executing SQL statements read from a file. This method is a wrapper around sqlite3_exec().

Opens the database specified in the location argument of the DatabaseSyncconstructor. This method should only be used when the database is not opened via the constructor. An exception is thrown if the database is already open.

Compiles a SQL statement into a prepared statement. This method is a wrapper around sqlite3_prepare_v2().

Back to top