Generic in memory implementation of a data set where data is an array of rows. Used by BunSqlite and automated testing. Can be rewinded.
Constructor of OINODbMemoryDataSet.
OINODbMemoryDataSet
data as OINODataRow[] (constructor will throw if invalid)
error messages from SQL-query
Readonly
Error messages
Rewinds data set to the first row, returns !isEof().
Gets all rows of data.
Checks if the messages contain errors.
Gets current row of data.
Is data set empty.
Is there no more content, i.e. either dataset is empty or we have moved beyond last line
Attempts to moves dataset to the next row, possibly waiting for more data to become available. Returns !isEof().
Generic in memory implementation of a data set where data is an array of rows. Used by BunSqlite and automated testing. Can be rewinded.