Located in compilation unit of com.
| Modifier and Type | Field and Description |
|---|---|
| protected ResultSet | resultSet
Field resultSet |
| protected Set | skipCols
Field skipCols |
| Access | Constructor and Description |
|---|---|
| public |
| Modifier and Type | Method and Description |
|---|---|
| public void | add(ResultSet resultSet)
Implements abstract com. Add the result set to the results. |
| public void | add(ResultSet resultSet, Set<Integer>
JDBC-indexed set of columns to be skipped skipCols)Implements abstract com. Add the result set to the results. |
| public void | add(CallableStatement callableStatement, Procedure procedure, PyObject params)
Implements abstract com. Method add |
| public void | |
| private PyObject | |
| public PyObject | fetchall()
Implements abstract com. Iterate the remaining contents of the ResultSet and return. |
| public PyObject | fetchmany(int size)
Implements abstract com. Iterate up to size rows remaining in the ResultSet and return. |
| public PyObject | |
| public void |
| resultSet | back to summary |
|---|---|
| protected ResultSet resultSet Field resultSet | |
| skipCols | back to summary |
|---|---|
| protected Set<Integer> skipCols Field skipCols | |
| DynamicFetch | back to summary |
|---|---|
| public DynamicFetch(DataHandler datahandler) Construct a dynamic fetch. | |
| add | back to summary |
|---|---|
| public void add(ResultSet resultSet) Implements abstract com. Add the result set to the results. If more than one result set is attempted to be added, an Error is raised since JDBC requires that only one ResultSet be iterated for one Statement at any one time. Since this is a dynamic iteration, it precludes the addition of more than one result set.
| |
| add | back to summary |
|---|---|
| public void add(ResultSet resultSet, Set<Integer> skipCols) Implements abstract com. Add the result set to the results. If more than one result set is attempted to be added, an Error is raised since JDBC requires that only one ResultSet be iterated for one Statement at any one time. Since this is a dynamic iteration, it precludes the addition of more than one result set.
| |
| add | back to summary |
|---|---|
| public void add(CallableStatement callableStatement, Procedure procedure, PyObject params) Implements abstract com. Method add
| |
| close | back to summary |
|---|---|
| public void close() throws SQLException Overrides com. Close the underlying ResultSet.
| |
| fetch | back to summary |
|---|---|
| private PyObject fetch(int size, boolean all) Internal use only. If all is true, return everything that's left in the result set, otherwise return up to size. Fewer than size may be returned if fewer than size results are left in the set. | |
| fetchall | back to summary |
|---|---|
| public PyObject fetchall() Implements abstract com. Iterate the remaining contents of the ResultSet and return.
| |
| fetchmany | back to summary |
|---|---|
| public PyObject fetchmany(int size) Implements abstract com. Iterate up to size rows remaining in the ResultSet and return.
| |
| nextset | back to summary |
|---|---|
| public PyObject nextset() Implements abstract com. Always returns None.
| |
| scroll | back to summary |
|---|---|
| public void scroll(int value, String mode) Implements abstract com. Method scroll
| |