Unicon documentation migration is in progress. You might find some broken links or experience minor issues in the documentation. We are working on resolving these issues.

X

Scout Database Model (CR)

Table: IccCommand

This table store all commands for the inter console communication

ColumnName DataType Key Not Null Default Value Comment
IccCommandID INTEGER PK NN    
IdCmdID INTEGER        
CreatorInstanceID INTEGER        
CreatedAt INTEGER        
InstanceID INTEGER        
Command INTEGER        
CommandParamID INTEGER        
ValidFrom INTEGER        
ValidTo INTEGER        
IndexName IndexType Columns
PRIMARY PRIMARY IccCommandID

How to create

CREATE TABLE IccCommand( IccCommandID INTEGER NOT NULL, IsCmdID INTEGER, CreatorInstanceID INTEGER, CreatedAt INTEGER, InstanceID INTEGER, Command INTEGER, CommandParamID INTEGER, ValidFrom INTEGER, ValidTo INTEGER, DoneAt INTEGER, PRIMARY KEY (IccCommandID));
Table: IccCommand