Member Junction
    Preparing search index...

    Result from executing a SQL query through a CodeGenConnection. Normalizes the result shapes from different database drivers (mssql, pg, etc.) into a single interface that the orchestrator code can rely on.

    interface CodeGenQueryResult {
        recordset: any[];
    }
    Index

    Properties

    Properties

    recordset: any[]

    The array of rows returned by the query. Empty array if no rows.