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

Packages that use PreparedUpdate
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 PreparedUpdate in com.j256.ormlite.dao
 

Methods in com.j256.ormlite.dao with parameters of type PreparedUpdate
 int RuntimeExceptionDao.update(PreparedUpdate<T> preparedUpdate)
           
 int Dao.update(PreparedUpdate<T> preparedUpdate)
          Update all rows in the table according to the prepared statement argument.
 int BaseDaoImpl.update(PreparedUpdate<T> preparedUpdate)
           
 

Uses of PreparedUpdate in com.j256.ormlite.stmt
 

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

Methods in com.j256.ormlite.stmt with parameters of type PreparedUpdate
 int StatementExecutor.update(DatabaseConnection databaseConnection, PreparedUpdate<T> preparedUpdate)
          Update rows in the database.
 

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

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



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