Class Reference
IRIS for UNIX 2024.1.2
|
|
Private
Storage
|
This class represents a .NET DataSet, which is an XML-enabled dataset that you can use in SOAP messages when both the web service and client are based on InterSystems IRIS or when one side uses .NET. Other SOAP vendors do not support datasets and cannot process a WSDL generated by a web service that uses them.
The %XML.DataSet only needs to be instantiated using
If arguments must be passed to the query for its proper execution, then the
The query for the DataSet may be specified either at runtime or at compile time as parameters of a subclass of %XML.DataSet. If the query is specified at runtime, then a .NET untyped DataSet is returned by the SOAP support. If the query is specified by a compile time parameter, then a .NET typed DataSet is returned by the SOAP support.
If you use this class as the value returned by a web method, note that this class is designed to work only with SoapBindingStyle=document and SoapBodyUse=literal, so be sure to set those keywords.
Untyped DataSet
You can return a %XML.DataSet object as an untyped DataSet from a WebService as follows:
ClassMethod GetByName(prefix As %String) As %XML.DataSet [ WebMethod ] { // Return the results of the Person class' ByName query. Set result=##class(%XML.DataSet).%New("Sample.Person:ByName") Do result.SetArgs(prefix) Quit result }
Note you can bind a %XML.DataSet object to a query by either
a) setting the
Dynamic SQL
You can use the %XML.DataSet class to execute dynamic SQL queries
using the system-provided
ClassMethod GetBySalary(salary As %Integer) As %XML.DataSet [ WebMethod ] { Set result=##class(%XML.DataSet).%New() Do result.Prepare("SELECT ID, Name, Salary FROM Employee WHERE Salary > ?") Do result.SetArgs(salary) Quit result }
Typed DataSet
To return a typed DataSet, create a subclass of %XML.DataSet with the NAMESPACE, CLASS and QUERY parameters specified. Assume that the subclass is called MyTypedDataSet, then the following code returns a typed DataSet:
ClassMethod GetByName(prefix As %String) As MyTypedDataSet [ WebMethod ] { // Return the results of the Person class' ByName query. Set result=##class(MyTypedDataSet).%New() Do result.SetArgs(prefix) Quit result }
|
|
Properties | |||
---|---|---|---|
%Message | %Metadata | %PrivateTables | %ROWCOUNT |
%ROWID | %ResultColumnCount | %SQLCODE | CaseSensitive |
ClassName | Data | DataSetName | DiffGram |
NeedSchema | QueryName | RuntimeMode | WriteEmptyDiffgram |
|
The class name that contains the query for typed DataSet
If DATAONLY is set to true (=1), then the schema and diffgram will not be included in dataset XML output.
LOCATION - Should be the URL which is the location of the DataSet schema. The url may be absolute or relative to the schema request URL..
The XML namespace for typed DataSets
The query name for typed DataSet
Use "DefaultDataSet" as the default DataSet name for untyped DataSets. Use the subclass name as the default DataSet name for typed DataSets.
Use "DataSet" as the type.
|
CaseSensitive is Boolean property which corresponds to the Microsoft CaseSensitive dataset property.
The name of the DataSet being returned. Default set in %OnNew.
True if the data set is to be written in Microsoft DiffGram format.
True if the data set is to be written preceded by its schema. Default is 1 for diffgram, else 0.
True if the dataset is to contain only a diffgram element if there are no rows. The default is to have an empty element with the name of the dataset inside the diffgram element.
|
Closes the current result set cursor.
Returns the number of columns in the result set. Each row may be different for %XML.DataSet
Returns the column header for column n in the result set. Each row may be different for %XML.DataSet
Returns the name of column n in the result set. Each row may be different for %XML.DataSet
Returns the type of column n in the result set where type is an integer (CLIENTDATATYPEENUM) associated with the client datatype. Reference %occName for an explanation of the integer values. If the type cannot be determined, 0 (zero) is returned
If this query contains an object Id then this method opens an object with this Id and returns the object reference. Otherwise it returns a null object reference.
Advance the result set cursor to the next row in the XML tree. Returns 0 if the cursor is at the end of the result set.
Resets the current result set cursor to the beginning of the dataset. This method only works for datasets which have been created by reading XML input.
Call property method (logicalToXSD or XSDToLogical) for the specified column. Column is specified by a column list: $lb(name,xsdType,columnClass,columnProperty,ignoreNull)
Set the arguments to be used for the %ResultSet.Execute.
Write the XML schema for the data rows.
Write the data rows as XML with optional preceding schema.
No DTD available for DataSet
Generate hard coded schema that is used for DataSet