Abstract
Constructor for OINODbDataSet
.
internal database specific data type (constructor will throw if invalid)
error messages from SQL-query
Abstract
getGets all rows of data.
NOTE: This is left abstract instead of just using getRow()
so that DB implementations can hopefully optimize not duplicating data *
Checks if the messages contain errors.
Abstract
getGets current row of data.
Checks if the messages contain errors.
Abstract
isIs data set empty.
Abstract
isIs there no more content, i.e. either dataset is empty or we have moved beyond last line
Abstract
nextAttempts to moves dataset to the next row, possibly waiting for more data to become available. Returns !isEof().
Base class for SQL results that can be asynchronously iterated (but not necessarity rewinded). Idea is to handle database specific mechanisms for returning and formatting conventions in the database specific implementation. Data might be in memory or streamed in chunks and
OINODbDataSet
will serve it out consistently.