Package | Description |
---|---|
org.jooq |
The
org.jooq package contains jOOQ's public API. |
org.jooq.impl |
The
org.jooq.impl package contains jOOQ's implementation classes. |
Modifier and Type | Method and Description |
---|---|
Cursor<R> |
ResultQuery.fetchLazy()
Execute the query and "lazily" return the generated result.
|
Cursor<R> |
ResultQuery.fetchLazy(int fetchSize)
Deprecated.
- [#2811] - 3.3.0 - Use
ResultQuery.fetchSize(int) and
ResultQuery.fetchLazy() instead. |
<R extends Record> |
DSLContext.fetchLazy(ResultQuery<R> query)
Execute a
ResultQuery in the context of this DSLContext and return
a cursor. |
Cursor<Record> |
DSLContext.fetchLazy(ResultSet rs)
|
Cursor<Record> |
DSLContext.fetchLazy(ResultSet rs,
Class<?>... types)
|
Cursor<Record> |
DSLContext.fetchLazy(ResultSet rs,
DataType<?>... types)
|
Cursor<Record> |
DSLContext.fetchLazy(ResultSet rs,
Field<?>... fields)
|
Cursor<Record> |
DSLContext.fetchLazy(String sql)
Execute a new query holding plain SQL and "lazily" return the generated
result.
|
Cursor<Record> |
DSLContext.fetchLazy(String sql,
Object... bindings)
Execute a new query holding plain SQL and "lazily" return the generated
result.
|
Cursor<Record> |
DSLContext.fetchLazy(String sql,
QueryPart... parts)
Execute a new query holding plain SQL and "lazily" return the generated
result.
|
<R extends Record> |
DSLContext.fetchLazy(Table<R> table)
Execute and return all records lazily for
SELECT * FROM [table] . |
<R extends Record> |
DSLContext.fetchLazy(Table<R> table,
Condition condition)
Execute and return all records lazily for
SELECT * FROM [table] WHERE [condition] . |
Modifier and Type | Method and Description |
---|---|
<R extends Record> |
DefaultDSLContext.fetchLazy(ResultQuery<R> query) |
Cursor<Record> |
DefaultDSLContext.fetchLazy(ResultSet rs) |
Cursor<Record> |
DefaultDSLContext.fetchLazy(ResultSet rs,
Class<?>... types) |
Cursor<Record> |
DefaultDSLContext.fetchLazy(ResultSet rs,
DataType<?>... types) |
Cursor<Record> |
DefaultDSLContext.fetchLazy(ResultSet rs,
Field<?>... fields) |
Cursor<Record> |
DefaultDSLContext.fetchLazy(String sql) |
Cursor<Record> |
DefaultDSLContext.fetchLazy(String sql,
Object... bindings) |
Cursor<Record> |
DefaultDSLContext.fetchLazy(String sql,
QueryPart... parts) |
<R extends Record> |
DefaultDSLContext.fetchLazy(Table<R> table) |
<R extends Record> |
DefaultDSLContext.fetchLazy(Table<R> table,
Condition condition) |
Copyright © 2014. All Rights Reserved.