| Package | Description |
|---|---|
| org.jooq |
The
org.jooq package contains jOOQ's public API
This package mostly contains interfaces that are implemented by the
org.jooq.impl package. |
| org.jooq.impl |
The
org.jooq.impl package contains jOOQ's implementation classes
This package provides implementations for the jOOQ API from
org.jooq, whose interfaces are constructed mostly through the
Factory class, which hides implementation facts from
the public API |
| Modifier and Type | Method and Description |
|---|---|
Cursor<R> |
ResultQuery.fetchLazy()
Execute the query and "lazily" return the generated result
The returned
Cursor holds a reference to the executed
PreparedStatement and the associated ResultSet. |
Cursor<R> |
ResultQuery.fetchLazy(int fetchSize)
Execute the query and "lazily" return the generated result
The returned
Cursor holds a reference to the executed
PreparedStatement and the associated ResultSet. |
Cursor<Record> |
FactoryOperations.fetchLazy(ResultSet rs)
|
Cursor<Record> |
FactoryOperations.fetchLazy(String sql)
Execute a new query holding plain SQL and "lazily" return the generated
result.
|
Cursor<Record> |
FactoryOperations.fetchLazy(String sql,
Object... bindings)
Execute a new query holding plain SQL and "lazily" return the generated
result.
|
Cursor<Record> |
FactoryOperations.fetchLazy(String sql,
QueryPart... parts)
Execute a new query holding plain SQL and "lazily" return the generated
result.
|
| Modifier and Type | Method and Description |
|---|---|
Cursor<Record> |
FactoryProxy.fetchLazy(ResultSet rs)
Deprecated.
|
Cursor<Record> |
Factory.fetchLazy(ResultSet rs)
|
Cursor<Record> |
FactoryProxy.fetchLazy(String sql)
Deprecated.
|
Cursor<Record> |
Factory.fetchLazy(String sql)
Execute a new query holding plain SQL and "lazily" return the generated
result.
|
Cursor<Record> |
FactoryProxy.fetchLazy(String sql,
Object... bindings)
Deprecated.
|
Cursor<Record> |
Factory.fetchLazy(String sql,
Object... bindings)
Execute a new query holding plain SQL and "lazily" return the generated
result.
|
Cursor<Record> |
FactoryProxy.fetchLazy(String sql,
QueryPart... parts)
Deprecated.
|
Cursor<Record> |
Factory.fetchLazy(String sql,
QueryPart... parts)
Execute a new query holding plain SQL and "lazily" return the generated
result.
|
Copyright © 2013. All Rights Reserved.