Uses of Interface
org.jooq.Insert

Packages that use Insert
org.jooq   
org.jooq.impl   
 

Uses of Insert in org.jooq
 

Subinterfaces of Insert in org.jooq
 interface InsertFinalStep<R extends Record>
          This type is used for the Insert's DSL API.
 interface InsertOnDuplicateSetMoreStep<R extends Record>
          This type is used for the Insert's DSL API.
 interface InsertOnDuplicateStep<R extends Record>
          This type is used for the Insert's DSL API.
 interface InsertQuery<R extends Record>
          A query for data insertion
 interface InsertResultStep<R extends Record>
          This type is used for the Insert's DSL API.
 interface InsertSetMoreStep<R extends Record>
          This type is used for the Insert's alternative DSL API.
 interface InsertValuesStep<R extends Record>
          This type is used for the Insert's DSL API.
 

Methods in org.jooq that return Insert
<R extends Record>
Insert<R>
FactoryOperations.insertInto(Table<R> into, Select<?> select)
          Deprecated. - 2.0.3 - Use any of these methods instead:
 Insert<R> InsertValuesStep.select(Select<?> select)
          Use a SELECT statement as the source of values for the INSERT statement This variant of the INSERT ..
 Insert<R> InsertSetStep.select(Select<?> select)
          Use a SELECT statement as the source of values for the INSERT statement This variant of the INSERT ..
 

Uses of Insert in org.jooq.impl
 

Methods in org.jooq.impl that return Insert
<R extends Record>
Insert<R>
FactoryProxy.insertInto(Table<R> into, Select<?> select)
          Deprecated. 
<R extends Record>
Insert<R>
Factory.insertInto(Table<R> into, Select<?> select)
          Deprecated. 
 



Copyright © 2012. All Rights Reserved.