org.jooq
Interface DeleteFinalStep<R extends Record>

All Superinterfaces:
Adapter, Attachable, Delete<R>, Query, QueryPart, Serializable
All Known Subinterfaces:
DeleteConditionStep<R>, DeleteWhereStep<R>

public interface DeleteFinalStep<R extends Record>
extends Delete<R>

This type is used for the Delete's DSL API.

Example:

 Factory create = new Factory();

 create.delete(table)
       .where(field1.greaterThan(100))
       .execute();
 

Author:
Lukas Eder

Method Summary
 
Methods inherited from interface org.jooq.Query
bind, bind, execute, getBindValues, getParam, getParams, getSQL, getSQL
 
Methods inherited from interface org.jooq.Attachable
attach
 
Methods inherited from interface org.jooq.Adapter
internalAPI
 



Copyright © 2012. All Rights Reserved.