Uses of Class
com.jenkov.mrpersister.itf.UpdateResult

Packages that use UpdateResult
com.jenkov.mrpersister.impl   
com.jenkov.mrpersister.itf   
 

Uses of UpdateResult in com.jenkov.mrpersister.impl
 

Methods in com.jenkov.mrpersister.impl that return UpdateResult
 UpdateResult ObjectWriter.delete(IObjectMapping mapping, java.lang.Object object, java.lang.String sql, java.sql.Connection connection)
           
 UpdateResult ObjectWriter.deleteBatch(IObjectMapping mapping, java.util.Collection objects, java.lang.String sql, java.sql.Connection connection)
           
 UpdateResult ObjectWriter.deleteByPrimaryKey(IObjectMapping mapping, java.lang.Object primaryKey, java.lang.String sql, java.sql.Connection connection)
           
 UpdateResult ObjectWriter.deleteByPrimaryKeysBatch(IObjectMapping mapping, java.util.Collection primaryKeys, java.lang.String sql, java.sql.Connection connection)
           
 UpdateResult GenericDao.getUpdateResult(int index)
           
 UpdateResult ObjectWriter.insert(IObjectMapping mapping, java.lang.Object object, java.lang.String sql, java.sql.Connection connection)
           
 UpdateResult ObjectWriter.insertBatch(IObjectMapping mapping, java.util.Collection objects, java.lang.String sql, java.sql.Connection connection)
           
 UpdateResult ObjectWriter.update(IObjectMapping mapping, java.lang.Object object, java.lang.Object oldPrimaryKeyValue, java.lang.String sql, java.sql.Connection connection)
           
 UpdateResult ObjectWriter.update(IObjectMapping mapping, java.lang.Object object, java.lang.String sql, java.sql.Connection connection)
           
 UpdateResult ObjectWriter.updateBatch(IObjectMapping mapping, java.util.Collection objects, java.util.Collection oldPrimaryKeys, java.lang.String sql, java.sql.Connection connection)
           
 UpdateResult ObjectWriter.updateBatch(IObjectMapping mapping, java.util.Collection objects, java.lang.String sql, java.sql.Connection connection)
           
 UpdateResult ObjectWriter.updateOptimistic(IObjectMapping mapping, java.lang.Object object, java.lang.Object original, java.lang.String sql, java.sql.Connection connection)
           
 

Uses of UpdateResult in com.jenkov.mrpersister.itf
 

Methods in com.jenkov.mrpersister.itf that return UpdateResult
 UpdateResult IObjectWriter.delete(IObjectMapping mapping, java.lang.Object object, java.lang.String sql, java.sql.Connection connection)
          Deletes the record in the database coresponding to the given object.
 UpdateResult IObjectWriter.deleteBatch(IObjectMapping mapping, java.util.Collection objects, java.lang.String sql, java.sql.Connection connection)
          Deletes the records in the database coresponding to the given objects.
 UpdateResult IObjectWriter.deleteByPrimaryKey(IObjectMapping mapping, java.lang.Object primaryKey, java.lang.String sql, java.sql.Connection connection)
          Deletes the record matching the given primary key, from the table referenced in the object mapping.
 UpdateResult IObjectWriter.deleteByPrimaryKeysBatch(IObjectMapping mapping, java.util.Collection primaryKeys, java.lang.String sql, java.sql.Connection connection)
          Deletes the records in the database coresponding to the given primary keys.
 UpdateResult IGenericDao.getUpdateResult(int index)
          Returns an UpdateResult instance.
 UpdateResult IObjectWriter.insert(IObjectMapping mapping, java.lang.Object object, java.lang.String sql, java.sql.Connection connection)
          Inserts the given object into the table it is mapped to in the given object mapping.
 UpdateResult IObjectWriter.insertBatch(IObjectMapping mapping, java.util.Collection objects, java.lang.String sql, java.sql.Connection connection)
          Inserts the objects in the objects collection into the table they are mapped to, in the given object mapping.
 UpdateResult IObjectWriter.update(IObjectMapping mapping, java.lang.Object object, java.lang.Object oldPrimaryKeyValue, java.lang.String sql, java.sql.Connection connection)
          Updates the record in the database matching the value of the oldPrimaryKeyValue, with the values present in the object at the time of calling this method, according to the given object mapping.
 UpdateResult IObjectWriter.update(IObjectMapping mapping, java.lang.Object object, java.lang.String sql, java.sql.Connection connection)
          Updates the record in the database corresponding to the given object, with the values present in the object at the time of calling this method, according to the given object mapping.
 UpdateResult IObjectWriter.updateBatch(IObjectMapping mapping, java.util.Collection objects, java.util.Collection oldPrimaryKeys, java.lang.String sql, java.sql.Connection connection)
          Updates the records in the database corresponding to the objects contained in the collection passed in parameter objects.
 UpdateResult IObjectWriter.updateBatch(IObjectMapping mapping, java.util.Collection objects, java.lang.String sql, java.sql.Connection connection)
          Updates the records in the database corresponding to the objects contained in the collection passed in parameter objects.
 UpdateResult IObjectWriter.updateOptimistic(IObjectMapping mapping, java.lang.Object object, java.lang.Object original, java.lang.String sql, java.sql.Connection connection)
          Updates the record in the database corresponding to the given object, with the values present in the object at the time of calling this method, according to the given object mapping.