fetchRows

fun fetchRows(minRowNum: Long, maxRowNum: Long): List<RowGetterIfc>

Returns the rows between minRowNum and maxRowNum, inclusive. Since there may be memory implications when using this method, please use it wisely. In fact, use the provided iterator instead.

Return

the list of rows, the list may be empty, if there are no rows in the row number range

Parameters

minRowNum

the minimum row number, must be less than maxRowNum, and 1 or bigger

maxRowNum

the maximum row number, must be greater than minRowNum, and 2 or bigger