cfg_section_name
returns INI file section name
cfg_section_name
(in path varchar,
in index integer);
Parameters
path –
Name of the INI file.
index –
Zero based index that references a section.
Return Values
An varchar containing the name of section.
Description
Returns the name of section specified by the index
(begins from zero). If the index can reference a section, the that
section name is returned, otherwise returns zero on error.
Examples
Simple examples
Get the second section name from the
current virtuoso.ini file.
SQL> select cfg_section_name(virtuoso_ini_path(), 1);
callret
VARCHAR
_____________________________________________________
Parameters