Interface SqlOptions

SQL execution option interface

interface SqlOptions {
    dynamic?: boolean;
    extra?: boolean;
    params?: any[];
}

Properties

dynamic?: boolean

Indicates whether dynamic object names are supported. This parameter is not specified in the compilation phase and does not need to be decorated by useObject.

extra?: boolean

Indicates whether to return additional information, for example, picklist label.

params?: any[]

SQL binding parameters