Type Alias DoReloadExParams

Parameters for a reload.

type DoReloadExParams = {
    qDebug?: boolean;
    qMode?: number;
    qPartial?: boolean;
    qReloadId?: string;
    qRowLimit?: number;
    qSkipStore?: boolean;
}
Index

Properties

qDebug?: boolean

Set to true to debug reload. The default value is false.

qMode?: number

0: for default mode. 1: for ABEND; the reload of the script ends if an error occurs. 2: for ignore; the reload of the script continues even if an error is detected in the script.

qPartial?: boolean

Set to true for partial reload. The default value is false.

qReloadId?: string

Optional reload ID. ID will be automatically generated if not set.

qRowLimit?: number

If greater than or equal 0, defines max number of rows loaded from a data source.

qSkipStore?: boolean

Set to true to skip Store statements. The default value is false.