Provides extended settings for each data provider.
property SpecificOptions: TSpecificOptionsList;
Use the SpecificOptions property to provide extended settings for each data provider. SpecificOptions can be setup both design time and run time.
At design time call the component editor by double click on it, and select the Options tab in the editor. Calling the SpecificOptions editor from the Object Inspector will open the component editor with Options tab active. Type or select the provider name, and change values of required properties. Then you can either close the editor, or select another provider name. Settings for all providers will be saved.
SpecificOptions can be setup at the same time for all providers that supposed to be used.
All options are applied right before executing. If an option name is not recognized, an exception is raised and commands are not executed.
You can also setup specific options at run time. Either of two formats can be used:
In the second case options will be applied to the current provider, namely to the provider specified in the TUniConnection.ProviderName property of assigned connection.
When you set the AutoDDL option like it is shown in the second example, you can execute the script with the InterBase provider, but attempt to execute it with other providers will fail.
Example 1. UniSQL1.SpecificOptions.Add('InterBase.AutoDDL=True') Example 2. UniSQL1.SpecificOptions.Add('AutoDDL=True')