Member Junction
    Preparing search index...

    Configuration options for SQL execution with logging support

    interface ExecuteSQLOptions {
        connectionSource?: ConnectionPool | Transaction;
        description?: string;
        ignoreLogging?: boolean;
        isMutation?: boolean;
        simpleSQLFallback?: string;
    }
    Index

    Properties

    connectionSource?: ConnectionPool | Transaction

    Optional connection source to use instead of the default pool. Used by IS-A chain orchestration to execute SPs on a shared transaction. Should be a sql.Transaction or sql.ConnectionPool instance.

    description?: string

    Optional description for this SQL operation

    ignoreLogging?: boolean

    If true, this statement will not be logged to any logging session

    isMutation?: boolean

    Whether this is a data mutation operation (INSERT/UPDATE/DELETE)

    simpleSQLFallback?: string

    Simple SQL fallback for loggers with logRecordChangeMetadata=false (only for Save/Delete operations)