Obtains the schema of the database struct on which the operations in XSQL format are performed.
1 system.dbms.getSchema
<system.dbms.getSchema />
Returns | |
---|---|
Type | Description |
string | The schema of the database on which you are working. |
Example
Assigns the schema of the database to a variable.
Copy
<xsql-script name='system_getSchema_sample1'> <body> <set name='m_dbms_sch'><system.dbms.getSchema /></set> <println><m_dbms_sch/></println> </body> </xsql-script>