class %SQL.CSVResultSet
extends %SQL.IResultSet
%SQL.CSVResultSet is a hidden class, internal to ISC, that provides the basic functionality
necessary to bind a result set to an external data source that is in csv format. This class
is hidden because users need not be aware that it exists. To prepare a new CSV-bound result
set it is only necessary to call a method in %SQL.DynamicStatement. Refer to
that class for more information.
Parameters
|
Properties
|
Methods
|
Queries
|
Indices
|
ForeignKeys
|
Triggers
|
|
|
8
|
|
|
|
|
method %Get(pColumnName As %String)
as %String
Returns the value of the column with the name name in the current row of the result set.
If name is not a valid column name, this method returns an empty string.
method %GetData(pColumnNbr As %Integer = 0)
as %String
Returns the value of column colnbr in the current row of the result set.
method %SendODBC()
as %Integer
Fetch and send a series of rows for the ODBC/JDBC server. For internal use only.
method parseString(in, del, quote, return, ByRef continue, ByRef stream=0, term="")