Name
virtuoso_ini_item_value — read a section/item value from the running server's INI file
Synopsis
varchar virtuoso_ini_item_value(
|
in section varchar, |
in item varchar); |
Description
virtuoso_ini_item_value reads a value from the
running server's INI file at section section and
item item. Returns the value as a string or NULL
when the item is absent; raises SQL state 39000 (FA055)
if the config file cannot be opened.
Parameters
section
INI section name (without brackets).
item
INI item name within that section.
Return Types
A varchar value, or NULL if the item is
absent.
Examples
Example 24.124. Read ServerPort from the INI
SQL> select virtuoso_ini_item_value ('Parameters', 'ServerPort');