You can define adapter parameters in CCL/CCX or in runtime configuration files, as well as via the Sybase CEP Studio ADL files.
Only one adapter configuration should be defined per configuration file. The macro $RuntimeFolder can be used to path to the runtime configuration files.
The value of this macro is a directory called "runtime" under the directory defined by the "StoragePath" preference under the C8/Server/Common section in the server configuration file. See Stream Binding Runtime Configuration for more details.
You can turn on runtime configuration from within Sybase CEP Studio, at which point you must define the name and location of the configuration file.
All adapters have an optional property that can be set. The "Runtime property file" allows for the setting of a file name. The file may be pathed to with either an absolute path or the $RuntimeFolder macro. Values in the property file will override any default values set in the Adapter ADL file or explicitly set in the property page within Studio. The property file format is a standard property file format. The property names are identical to those that are written to the CCL in Sybase CEP Studio for a given adapter. Whereas in Studio, the property value shows up as being in quote in the CCL, in theproperty file, there should be no quotes.
For example, in CCL this would look like:
ATTACH INPUT ADAPTER ...TO STREAM ...PROPERTIES PROP1 = "prop1 value" PROP2 = "prop2 value" PROP3 = "prop3 value"
Whereas in the property file, this would look like:
PROP1 = prop1 value PROP2 = prop2 value PROP3 = prop3 value