Type alias SQLiteCompatibleType

SQLiteCompatibleType: number | string | Uint8Array | number[] | bigint | null

Javascript types that SQLite can use

C integer and floating-point types both map to/from Javascript number. Blob data can be provided to SQLite as Uint8Array or number[] (with each element converted to a byte); SQLite always returns blob data as Uint8Array

Generated using TypeDoc