| GetFixedXML Method | |
| See Also |
- xmlMode
- The data to be included in the XML
Returns the query data as XML based on a fixed schema.
The GetAsXML also returns the data as XML, but the schema is dynamic and based on the specific query. With the GetFixedXML, the schema is fixed and is available with the GetFixedSchema method. You can use the schema, for example, to create a .NET object for handling the query XML.
For more information, see Exchanging Data Using the DI API XML Capabilities.
| Visual Basic |
|---|
Public Function GetFixedXML( _
   ByVal xmlMode As RecordsetXMLModeEnum _
) As String |
- xmlMode
The data to be included in the XMLValue Description rxmData Returns the fields specified in the query. rxmDataWithPrimaryKeys Returns the fields specified in the query, plus the primary keys. rxmOnlyPrimaryKeys Returns only the primary keys.