API reference / @evolu/common / Sqlite
Sqlite
Interfaces
| Interface | Description |
|---|---|
| CreateSqliteDriverDep | - |
| PreparedStatements | - |
| RawSql | - |
| SqlIdentifier | - |
| Sqlite | Cross-platform SQLite abstraction. |
| SqliteDep | - |
| SqliteDriver | SQLite driver interface. This is the minimal interface that platform-specific drivers must implement. |
| SqliteDriverOptions | - |
| SqliteError | Represents an error that occurred during a SQLite operation. |
| SqliteExecResult | Result of executing a SQLite query. |
| SqliteQuery | - |
| SqliteQueryOptions | - |
| SqliteQueryPlanRow | - |
Type Aliases
| Type Alias | Description |
|---|---|
| CreateSqliteDriver | - |
| SafeSql | A type representing a sanitized SQL string. |
| SqliteBoolean | - |
| SqliteRow | - |
| SqliteValue | - |
| SqlTemplateParam | - |
Variables
| Variable | Description |
|---|---|
| isSqlMutation | - |
| SqliteBoolean | SQLite represents boolean values using 0 (false) and 1 (true) instead of a dedicated boolean type. |
| sqliteFalse | Represents the SqliteBoolean value for false. |
| sqliteTrue | Represents the SqliteBoolean value for true. |
| SqliteValue | A value that can be stored in Sqlite. |
Functions
| Function | Description |
|---|---|
| createPreparedStatementsCache | - |
| createSqlite | Creates a fully featured Sqlite instance from a SqliteDriver implementation. |
| explainSqliteQueryPlan | - |
| sql | TODO: Docs. |