| @NotNull Cursor<Record> | DSLContext. fetchLazy(String sql) | Execute a new query holding plain SQL and "lazily" return the generated
 result. | 
| @NotNull Cursor<Record> | DSLContext. fetchLazy(String sql,
         Object... bindings) | Execute a new query holding plain SQL and "lazily" return the generated
 result. | 
| @NotNull Cursor<Record> | DSLContext. fetchLazy(String sql,
         QueryPart... parts) | Execute a new query holding plain SQL and "lazily" return the generated
 result. | 
| @NotNull Cursor<Record> | DSLContext. fetchLazy(ResultSet rs) |  | 
| @NotNull Cursor<Record> | DSLContext. fetchLazy(ResultSet rs,
         Class<?>... types) |  | 
| @NotNull Cursor<Record> | DSLContext. fetchLazy(ResultSet rs,
         DataType<?>... types) |  | 
| @NotNull Cursor<Record> | DSLContext. fetchLazy(ResultSet rs,
         Field<?>... fields) |  | 
| <R extends Record>@NotNull Cursor<R>
 | DSLContext. fetchLazy(ResultQuery<R> query) | Execute a  ResultQuery in the context of this  DSLContext and return
 a cursor. | 
| @NotNull Cursor<Record> | DSLContext. fetchLazy(SQL sql) | Execute a new query holding plain SQL and "lazily" return the generated
 result. | 
| <R extends Record>@NotNull Cursor<R>
 | DSLContext. fetchLazy(Table<R> table) | Execute and return all records lazily for
  | 
| <R extends Record>@NotNull Cursor<R>
 | DSLContext. fetchLazy(Table<R> table,
         Collection<? extends Condition> conditions) | Execute and return all records lazily for
  | 
| <R extends Record>@NotNull Cursor<R>
 | DSLContext. fetchLazy(Table<R> table,
         Condition condition) | Execute and return all records lazily for
  | 
| <R extends Record>@NotNull Cursor<R>
 | DSLContext. fetchLazy(Table<R> table,
         Condition... conditions) | Execute and return all records lazily for
  | 
| @NotNull Cursor<R> | ResultQuery. fetchLazy() | Execute the query and "lazily" return the generated result. | 
| @NotNull Cursor<R> | ResultQuery. fetchLazy(int fetchSize) | Deprecated.
 |