PGQueryResult | WebHare Platform SDK
WebHare Platform SDK
    Preparing search index...

    Interface PGQueryResult<R>

    interface PGQueryResult<R = any> {
        command: string;
        fields: { codec: Codec<any, any>; dataTypeId: number; fieldName: string }[];
        rowCount: number;
        rows: R[];
    }

    Type Parameters

    • R = any
    Index

    Properties

    command: string
    fields: { codec: Codec<any, any>; dataTypeId: number; fieldName: string }[]
    rowCount: number
    rows: R[]