Uses of Interface
org.jooq.Cursor

Packages that use Cursor
org.jooq   
org.jooq.impl   
 

Uses of Cursor in org.jooq
 

Methods in org.jooq that return Cursor
 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)
          Fetch all data from a JDBC ResultSet and transform it to a jOOQ Result.
 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.
 

Uses of Cursor in org.jooq.impl
 

Methods in org.jooq.impl that return Cursor
 Cursor<Record> FactoryProxy.fetchLazy(ResultSet rs)
          Deprecated.  
 Cursor<Record> Factory.fetchLazy(ResultSet rs)
          Fetch all data from a JDBC ResultSet and transform it to a jOOQ Result.
 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 © 2012. All Rights Reserved.