prorm API Reference
    Preparing search index...

    Interface QueryResult

    The rows and metadata returned by a query.

    interface QueryResult {
        rows: any[];
        rowCount: number;
        fields: FieldInfo[];
        lastInsertRowid?: number;
        outputParams?: Record<string, unknown>;
        resultSets?: any[][];
    }
    Index
    rows: any[]
    rowCount: number
    fields: FieldInfo[]
    lastInsertRowid?: number
    outputParams?: Record<string, unknown>

    Scalar OUT/INOUT parameter values returned by a stored procedure CALL (e.g. HANA's hdb driver callback shape cb(err, parameters, ...resultSets)). Present only when the query was a procedure call that declared such parameters.

    resultSets?: any[][]

    Additional result sets returned by a stored procedure CALL beyond the primary rows (e.g. one array per table/cursor OUT parameter). Present only when the procedure returned more than one additional result set.