Table: IccTerminateParam
This table store all terminate requests from one console to another
| ColumnName | DataType | Key | Not Null | Default Value | Comment |
|---|---|---|---|---|---|
| IccTerminateParam | INTEGER | PK | NN | ||
| DisplayTime | INTEGER | ||||
| CanCancel | SMALLINT |
| IndexName | IndexType | Columns |
|---|---|---|
| PRIMARY | PRIMARY | IccTerminateParam |
how
to create
CREATE
TABLE IccTerminateParam(
IccTerminateParamID INTEGER NOT NULL,
DisplayTime INTEGER,
CanCancel SMALLINT,
PRIMARY KEY (IccTerminateParamID));

