This command registry allows the server to look up
an implementation and default parameters for a command
interface.
Column Descriptions:
| Name | Type | Description |
| STOREENT_ID | INTEGER NOT NULL | The ID for a store. A value of 0 means that this
command implementation is applicable to all stores. |
| INTERFACENAME | VARCHAR (254) NOT NULL | The command interface name. |
| DESCRIPTION | VARCHAR (254) | This is a description for the command. |
| CLASSNAME | VARCHAR (254) | The implementation class name for a command. |
| PROPERTIES | VARCHAR (254) | The default properties associated with this
command. The properties are in the
"property1=value1&property2=value2" form where "propertyn" is
the name of the property and "valuen" is the value corresponding to
the property. |
| LASTUPDATE | TIMESTAMP | The last time this entry was updated. |
| TARGET | CHAR (16) DEFAULT 'Local' | Indicates where this command is to be executed.
Currently the only valid value is Local, which means all commands
are executed on the local machine. |
| OPTCOUNTER | SMALLINT | The optimistic concurrency control counter for
the table. Every time there is an update to the table, the counter
is incremented. |
Indexes:
| Name | Column Names | Type |
| <SYSTEM-GENERATED> | STOREENT_ID+INTERFACENAME | Primary Key |
Constrained By Parent Tables:
| Constraint | Columns | Parent Table | Parent Columns | Type |
| F_243 | STOREENT_ID | STOREENT | STOREENT_ID | Cascade |