Obtains the list of dictionaries related with the connection dictionary (database). It means, the dictionaries which are in order of lower priority to the connection dictionary and can be found al least once forming part of the database dictionaries. For example, if you have the dictionary wic_iges, you obtain the list with the wic_icon dictionary. If you have the dictionary wic_itra, you obtain the list with the dictionaries wic_iges and wic_icon.

1 system.dbms.getRelatedDictionaries

<system.dbms.getRelatedDictionaries />
Example

Obtain the list of the dictionaries related with the connection dictionary.

Copy
<xsql-script name='system_getRelatedDictionaries_sample1'>
    <body>
        <set name='dicts'><system.dbms.getRelatedDictionaries /></set>
        <iterator name='dict'>
            <in>
                <dicts/>
            </in>
            <do>
                <println><string>Dictionary related with <system.dbms.getCode/>: <dict/></string></println>
            </do>
        </iterator>
    </body>
</xsql-script>