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: EluxVarList

Each entry describes an environment variable to be set on the client.

ColumnName DataType Key Not Null Default Value Comment
EluxVarListID INTEGER PK NN   Unique ID of variable entry
SetupID INTEGER FK     Setup ID (foreign key refers to table Setup)
VarKey NVARCHAR(255)       User-specific environment variable (ELUX…)
VarValue NVARCHAR(255)       ADS/LDAP variable
ReservedString1 NVARCHAR(255)        
ReservedString2 NVARCHAR(255)        
ReservedInt1 INTEGER        
ReservedInt2 INTEGER        
IndexName IndexType Columns
PRIMARY PRIMARY EluxVarListID

How to create

CREATE TABLE EluxVarList ( EluxVarListID INTEGER NOT NULL, SetupID INTEGER, VarKey NVARCHAR(255), VarValue NVARCHAR(255), ReservedString1 NVARCHAR(255), ReservedString2 NVARCHAR(255), ReservedInt1 INTEGER, ReservedInt2 INTEGER, FOREIGN KEY (SetupID) REFERENCES Setup (SetupID), PRIMARY KEY (EluxVarListID));
Table: EluxVarList