Abstract
Readonly
metaContains an array of objects with metadata about the query.
Each column's name is always given. If extendedMetaData is true, additional information is included.
Abstract
[iterator]This function defines the default iterator for a result set that can be used to iterate over its rows. Using the default iterator, a result set can be iterated over using the for..of construct.
IError if the result set has already been closed
IError if the result set is already being iterated over
Abstract
closeAbstract
getThis call fetches one row of the result set as an object or an array of column values, depending on the value of outFormat.
At the end of fetching, the result set must be freed by calling close().
Performance of getRow() can be tuned by adjusting the value of fetchArraySize.
Abstract
getThis call fetches numRows rows of the result set as an object or an array of column values, depending on the value of outFormat.
specifies the number of rows to be returned. the default value of numRows is 0 and it returns all rows.
At the end of fetching, the result set must be freed by calling close().
Performance of getRows() can be tuned by adjusting the value of fetchArraySize.
Abstract
iteratorConvenience function for getting an iterator of this IResultSet.
This is equivalent to calling rsSymbol.iterator.
an iterator over the rows of this IResultSet.
IError if the result set has already been closed
IError if the result set is already being iterated over
Interface for representing result sets as returned by execute().