Uses of Interface
com.j256.ormlite.stmt.PreparedDelete

Packages that use PreparedDelete
com.j256.ormlite.dao Database Access Object classes. 
com.j256.ormlite.stmt SQL statement generation and processing. 
com.j256.ormlite.stmt.mapped Compiled SQL query statements. 
 

Uses of PreparedDelete in com.j256.ormlite.dao
 

Methods in com.j256.ormlite.dao with parameters of type PreparedDelete
 int RuntimeExceptionDao.delete(PreparedDelete<T> preparedDelete)
           
 int Dao.delete(PreparedDelete<T> preparedDelete)
          Delete the objects that match the prepared statement argument.
 int BaseDaoImpl.delete(PreparedDelete<T> preparedDelete)
           
 

Uses of PreparedDelete in com.j256.ormlite.stmt
 

Methods in com.j256.ormlite.stmt that return PreparedDelete
 PreparedDelete<T> DeleteBuilder.prepare()
          Build and return a prepared delete that can be used by Dao.delete(PreparedDelete) method.
 

Methods in com.j256.ormlite.stmt with parameters of type PreparedDelete
 int StatementExecutor.delete(DatabaseConnection databaseConnection, PreparedDelete<T> preparedDelete)
          Delete rows that match the prepared statement.
 

Uses of PreparedDelete in com.j256.ormlite.stmt.mapped
 

Classes in com.j256.ormlite.stmt.mapped that implement PreparedDelete
 class MappedPreparedStmt<T,ID>
          Mapped statement used by the StatementBuilder.prepareStatement(Long) method.
 



This content is licensed by Gray Watson under the Creative Commons Attribution-Share Alike 3.0 License.