@fermyon/spin-sdk
    Preparing search index...

    Interface SqliteResult

    Interface representing the formatted result of an SQLite query. SqliteResult

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

    Properties

    Properties

    columns: string[]

    The column names in the result.

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

    The rows of results.