The functions in this section map the contents of the relational table to XML values. This is similar to exporting table in XML format.
Function parameters:
Description: Maps the contents of a table to XML values.
Return type: XML
If tableforest is false, the XML document in the result is similar to the following:
1 2 3 4 5 6 7 8 9 10 11 12 | <tablename> <row> <columnname1>data</columnname1> <columnname2>data</columnname2> </row> <row> ... </row> ... </tablename> |
If tableforest is true, the XML content in the result is similar to the following:
1 2 3 4 5 6 7 8 9 10 | <tablename> <columnname1>data</columnname1> <columnname2>data</columnname2> </tablename> <tablename> ... </tablename> ... |
Description: Maps a relational table schema to an XML schema document.
Return type: XML
The result of the schema content mapping is similar to the following:
1 2 3 4 5 6 7 8 9 | <schemaname> table1-mapping table2-mapping ... </schemaname> |
The format of the table mapping depends on the tableforest parameter.
Description: Maps a relational table to XML values and schema documents.
Return type: XML
Description: Maps the contents of an SQL query to XML values.
Return type: XML
Description: Maps an SQL query into an XML schema document.
Return type: XML
Description: Maps SQL queries to XML values and schema documents.
Return type: XML
Description: Maps a cursor query to an XML value.
Return type: XML
Description: Maps a cursor query to an XML schema document.
Return type: XML
Description: Maps a table in a schema to an XML value.
Return type: XML
Description: Maps a table in a schema to an XML schema document.
Return type: XML
Description: Maps a table in a schema to an XML value and a schema document.
Return type: XML
Description: Maps a database table to an XML value.
Return type: XML
The result of the database content mapping may be similar to the following:
1 2 3 4 5 6 7 8 9 10 11 12 13 | <dbname> <schema1name> ... </schema1name> <schema2name> ... </schema2name> ... </dbname> |
Description: Maps a database table to an XML schema document.
Return type: XML
Description: Maps database tables to XML values and schema documents.
Return type: XML