This class is a specialized result set used with the EnsLib.SQL.OutboundAdapter
Instances are returned as output from EnsLib.SQL.OutboundAdapter.ExecuteQuery().
The list of rows is a static snapshot as of the time when the query was executed
%PrivateTables is an array of private temporary table orefs used by this result set subscripted by temp table name.
property %ROWCOUNT
as %Library.Integer [ Transient,ReadOnly ]; property %ROWID
as %String(MAXLEN="") [ Transient ]; property %ResultColumnCount
as %Library.Integer [ Transient,ReadOnly ];
%ResultColumnCount is the number of columns in the result set. This value is
always zero unless the current result is a RESULTSET object (instance of %SQL.IResultSet)
or a procedure context object (instance of %Library.IProcedureContext). For a CALL
statement result, this value represents the column count of the result set currently
bound. For more information on result set sequences and dynamic result set binding refer
to <>.
property %SQLCODE
as %Library.Integer [ Transient ]; property AtEnd
as %Boolean [ Calculated,Transient,ReadOnly ];
Are we at the last row?
property ColCount
as %Integer [ Calculated,Transient,ReadOnly ];
This holds the column count for this snapshot
property FirstRow
as %Integer [ InitialExpression = 1 ];
The index of the first row in this Snapshot. May be set on input when calling OutboundAdapter.ExecuteQuery() or ResultSet.GetSnapshot() to cause the first n-1 rows to be discarded before populating the Snapshot.
property MaxRowsToGet
as %Integer [ InitialExpression = 250 ];
The maximum number of rows to populate this Snapshot with. May be set on input to OutboundAdapter.ExecuteQuery() or ResultSet.GetSnapshot().
Set to -1 to get all rows no matter how many.
property RowCount
as %Integer [ Calculated,Transient,ReadOnly ];
Returns the value of the column with the name 'pColName' in the current row of the result set
Note: if the data exceeds the maximum string length then the return value will be the first 50 characters plus "..." and you should call GetStream() to get the full value.
Returns the value of column pColumn in the current row of the result set.
Note: if the data exceeds the maximum string length then the return value will be the first 50 characters plus "..." and you should call GetDataStream() to get the full value.
Returns as a Stream the full value of column pColumn in the current row of the result set.
If you pass a stream object in pStream, the data will be appended to that stream;
otherwise the data will be returned in a new %Stream.GlobalCharacter stream object.
Note that if this method creates a Stream object for you, the Stream data is already on disk
and you are responsible for calling stream.%Delete(stream.%Oid()) to delete the persistent storage for the new stream object
method GetODBCInfo(ByRef colinfo As %List, ByRef parminfo As %List)
as %Status
Returns as a Stream the full value of the column with the name 'pColName' in the current row of the result set.
If you pass a stream object in pStream, the data will be appended to that stream;
otherwise the data will be returned in a new %Stream.GlobalCharacter stream object.
Note that if this method creates a Stream object for you, the Stream data is already on disk
and you are responsible for calling stream.%Delete(stream.%Oid()) to delete the persistent storage for the new stream object
Returns true if the given field in the current row contains stream data. In this case the complete value for the field can only be retrieved using the
GetStream() or GetDataStream() method. Otherwise the field contains simple string data that can be retrieved completely using the Get() or GetData() method.
Returns true if the named column in the current row contains stream data. In this case the complete value for the field can only be retrieved using the
GetStream() or GetDataStream() method. Otherwise the field contains simple string data that can be retrieved completely using the Get() or GetData() method.
method ImportFile(pFilename As %String, pRowSeparator As %String = $C(10), pColumnSeparator As %String = $C(9), pColumnWidths As %String = "", pLineComment As %String = "", pStripPadChars As %String = " "_$C(9), pColNamesRow As %Integer = 0)
as %Status
Import a result set into a Snapshot
ResultSet classes supported: EnsLib.SQL.GatewayResultSet, %Library.ResultSet, %ResultSet.* (%Library.IResultSet) as well as the result sets in %SQL package such as %SQL.StatementResult and %SQL.ISelectResult (%SQL.IResult)
If pLegacyMode is specified as 0 then attempt first to use %GetMetadata leading to different source of meta data for legacy ResultSet class
Default is 1 which maintains previous behavior while still supporting %SQL.* and %ResultSet.* classes.
If pODBCColumnType is set to 1 then ColumntType text is set to the ODBC type column type text and not the clientType.
Imports data from a table-formatted text file
- negative pRowSeparator means row length
- zero or negative pColumnSeparator means positional columns; negative pColumnSeparator gives # char columns to skip
- pColumnWidths means comma-separated list of char counts if positional, or integer column count if using column separator.
- pLineComment means a string after which the rest of a row should be ignored
- pStripPadChars means characters to strip from the beginning and end of a field
- pColNamesRow means the index of a row that contains column names.