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

    Interface RdbmsRowSet

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

    Properties

    Properties

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