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

Properties

Properties

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