SQLite constants for various operations and flags.
Abort on conflict.
General conflict.
Constraint violation.
Data conflict type.
Foreign key constraint violation.
Row not found conflict.
Skip conflicting changes.
Replace conflicting changes.
Create database if it doesn't exist.
Open database for reading only.
Open database for reading and writing.
The DatabaseSync class represents a synchronous connection to a SQLite database. All operations are performed synchronously, blocking until completion.
The Session class for recording database changes. This class should not be instantiated directly; use Database.createSession() instead.
The StatementSync class represents a synchronous prepared statement. This class should not be instantiated directly; use Database.prepare() instead.
The main SQLite module interface.