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
number
Uint8Array
number[]
Generated using TypeDoc
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 asUint8Array
ornumber[]
(with each element converted to a byte); SQLite always returns blob data asUint8Array