Documentation
    Preparing search index...

    Interface representing the formatted result of an SQLite query. SqliteResult

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

    Properties

    Properties

    columns: string[]

    The column names in the result.

    rows: {
        [key: string]:
            | null
            | string
            | number
            | bigint
            | Uint8Array<ArrayBufferLike>;
    }[]

    The rows of results.