ConfigurationInformation¶
Holds internal configuration information for various OctoSAM components
While the configuration is mostly stored in the .NET configuration system through appsettings.json, some configuration settings need to be kept close to the database.
Some of these settings can be set through configuration dialogs, while others keep internal state of the application and are maintained by the OctoSAM software.
Values in this table can be dependent on other values or configuration settings and should not be manually edited without consulting Octosoft first.
Fields¶
Field | Type | Description |
---|---|---|
BlobValue | varbinary | Binary configuration value |
DateTimeValue | datetime | For date/time values, holds the information in database internal format (in addition to the string format in the Value column). This facilitates usage of the value in SQL. |
ID | numeric | Internal ID for the ConfigurationInformation entity (Primary Key) |
JsonValue | string | Configuration value of type JSON element |
LastModification | datetime | Last modification of this configuration parameter |
Name | string | Name of the configuration parameter |
Value | string | Value of the configuration parameter as string. Note that some configuration values cannot be represented in string form. |
XmlValue | xml | Configuration value of type XML document |