Interface representing the formatted result of an SQLite query. SqliteResult

interface SqliteResult {
    columns: string[];
    rows: { [key: string]: null | string | number | bigint | Uint8Array }[];
}

Properties

Properties

columns: string[]

The column names in the result.

rows: { [key: string]: null | string | number | bigint | Uint8Array }[]

The rows of results.