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'
/>
Attributes | |||||
---|---|---|---|---|---|
Name | Type | Required | Default | Description | |
Afind | string | Search string in the description of the objects. Allows the operator "+" or "-" to include or discard words. The search is always done on the title of the object in Spanish. | |||
Adbms | string | To indicate a database other than the connection. | |||
Apda | boolean | Indicate true to search only objects that are for PDA. | |||
Alang | string | Language in which the search is performed. |
Returns | |
---|---|
Type | Description |
ResultSet | DBMS name. |
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>