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.
Attachments
Issue Links
Activity
Field | Original Value | New Value |
---|---|---|
Link | This issue relates to TODO-338 [ TODO-338 ] |
Fix Version/s | jdbc-1.1.2 [ 12801 ] | |
Fix Version/s | jdbc-1.1.1 [ 12500 ] |
Assignee | Vladislav Vaintroub [ wlad ] | Georg Richter [ georg ] |
Workflow | defaullt [ 26218 ] | MariaDB v2 [ 47813 ] |
Workflow | MariaDB v2 [ 47813 ] | MariaDB connectors [ 54896 ] |
Workflow | MariaDB connectors [ 54896 ] | MariaDB v3 [ 70154 ] |
Assignee | Georg Richter [ georg ] | diego dupin [ diego dupin ] |
Fix Version/s | 1.2.1 [ 19602 ] |
Fix Version/s | 1.1.2 [ 12801 ] |
Issue Type | Task [ 3 ] | Epic [ 5 ] |
Epic Child |
|
Status | Open [ 1 ] | In Progress [ 3 ] |
Epic Name | Implement multiple row fetching | |
Sprint | Sprint 1 [ 11 ] |
Status | In Progress [ 3 ] | Stalled [ 10000 ] |
Fix Version/s | 1.4.0 [ 19606 ] | |
Fix Version/s | 1.3.0 [ 19602 ] |
Fix Version/s | 1.5.0 [ 19607 ] | |
Fix Version/s | 1.4.0 [ 19606 ] |
Fix Version/s | 1.4.0 [ 19606 ] | |
Fix Version/s | 1.5.0 [ 19607 ] |
Component/s | Other [ 12201 ] | |
Resolution | Fixed [ 1 ] | |
Status | Stalled [ 10000 ] | Closed [ 6 ] |
Workflow | MariaDB v3 [ 70154 ] | MariaDB v4 [ 134672 ] |
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.