Details
-
Epic
-
Status: Closed (View Workflow)
-
Minor
-
Resolution: Fixed
-
1.1.0
-
None
-
Implement multiple row fetching
-
Sprint connector/j 1.3.0
Description
As discussed earlier, currently fetch size is "one or all". It would be good to implement it fully.
Also, setFetchDirection for ResultSet and Statement are currently just stubs.
I think fetch direction can safely be ignored. after looking again at spec. this is a hint to the driver, which has no visible effects during runtime (i.e ResultSet.next() will still move forward, and previous() will move backward). We cannot use this hint - to move backwards with ResultSet.previous(), we have to read and cache the whole result, no way around it.