Returns a description of the hierarchies of the types defined by the user (UDT)
for a particular schema of the current database.
1 connection.metadata.getSuperTypes
<connection.metadata.getSuperTypes>
<catalog /> +
<schemaPattern /> +
<tableNamePattern /> +
</connection.metadata.getSuperTypes>
Arguments | |||||
---|---|---|---|---|---|
Name | Type | Required | Unique | Nullable | Description |
Ecatalog | String | Catalog. | |||
EschemaPattern | String | Pattern of name of schema. | |||
EtableNamePattern | String | Pattern of name of table. |
Returns | |
---|---|
Type | Description |
Vtable |
Example
Copy
<xsql-script name='connection_metadata.getSuperTypes_sample1'> <body> <println> <connection.metadata.getSuperTypes> <null /> <null /> <null /> </connection.metadata.getSuperTypes> </println> </body> </xsql-script>
Copy
+--------------+----------+----------------+--------------+---------------+---------------+ |type_cat |type_schem|type_name |supertype_cat |supertype_schem|supertype_name | +--------------+----------+----------------+--------------+---------------+---------------+ |demo_formacion|informix |r_aux |demo_formacion|informix |r_main | |demo_formacion|rel |rel_municipios |demo_formacion|rel |rel_ent_comunes| |demo_formacion|rel |rel_municipios_v|demo_formacion|rel |rel_municipios | +--------------+----------+----------------+--------------+---------------+---------------+