DatabaseSync
This class represents a single connection to a SQLite database. All APIs exposed by this class execute synchronously.
Since
v22.5.0
Functions
Link copied to clipboard
Closes the database connection. An exception is thrown if the database is not open. This method is a wrapper around sqlite3_close_v2()
.
Link copied to clipboard
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()
.
Link copied to clipboard
Compiles a SQL statement into a prepared statement. This method is a wrapper around sqlite3_prepare_v2()
.