Documentation
    Preparing search index...
    interface RdbmsRowSet {
        columns: RdbmsColumn[];
        rows: {
            [key: string]:
                | null
                | string
                | number
                | bigint
                | boolean
                | Uint8Array<ArrayBufferLike>;
        }[];
    }
    Index

    Properties

    Properties

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