interface PostgresV3RowSet {
    columns: PostgresV3Column[];
    rows: {
        [key: string]:
            | null
            | string
            | number
            | bigint
            | boolean
            | Uint8Array
            | Date;
    }[];
}

Properties

Properties

columns: PostgresV3Column[]
rows: {
    [key: string]:
        | null
        | string
        | number
        | bigint
        | boolean
        | Uint8Array
        | Date;
}[]