Member Junction
    Preparing search index...

    Final SQL + optional parameter array produced by WrapSaveCallForResult and WrapSaveCallWithRecordChange. Returned by GenericDatabaseProvider via SaveSQLResult.

    For SQL Server, parameters is typically omitted — the binding inlines everything via DECLARE/SET. For PostgreSQL, parameters carries the positional or JSON-arg values that bind to the $N placeholders.

    interface SaveSQLFragment {
        parameters?: unknown[];
        sql: string;
    }
    Index

    Properties

    Properties

    parameters?: unknown[]
    sql: string