Obtains a vtable with the name and the description of the objects found.

1 system.dbms.findObject

<system.dbms.findObject
    find='find'
    dbms='dbms'
    pda='pda'
    lang='lang'
/>
Example

Obtain balances no comparatives of connection bbdd balances.

Copy
<xsql-script name=''>
    <body>
        <set name='m_list'><system.dbms.findObject find='balance -comparative +balance' /></set>
        <println><m_list /></println>
    </body>
</xsql-script>
Example

Obtain the objects which contains the word 'invoice' in English in the title of a database other than the connection.

Copy
<xsql-script name=''>
	<body>
		<set name='m_list'>
			<system.dbms.findObject find='+invoice' lang='en' dbms='demo_sports' />
		</set>
		<println>
			<m_list />
		</println>
	</body>
</xsql-script>