A B C D E F G H I J K L M N O P R S T U V W

U

update(Object, Object) - Method in class com.jenkov.mrpersister.impl.AbstractDao
Updates the record in the database coresponding to the given object, with the values contained in this object, according to the object mapping stored or generated by the given object mapping key.
update(Object) - Method in class com.jenkov.mrpersister.impl.AbstractDao
Same as update(Object objectMappingKey, Object object) but uses the object.getClass() as the object mapping key.
update(Object, Object, Connection) - Method in class com.jenkov.mrpersister.impl.AbstractDao
Updates the record in the database coresponding to the given object, with the values contained in this object, according to the object mapping stored or generated by the given object mapping key.
update(Object, Connection) - Method in class com.jenkov.mrpersister.impl.AbstractDao
Same as update(Object objectMappingKey, Object object, Connection connection) but uses the object.getClass() as the object mapping key.
update(Object, Object, Object) - Method in class com.jenkov.mrpersister.impl.AbstractDao
Deprecated. Use the updateByPrimaryKey instead(). Renamed to avoid naming conflict.
update(Object, Object, Object, Connection) - Method in class com.jenkov.mrpersister.impl.AbstractDao
Deprecated. Use the updateByPrimaryKey method instead. Renamed to avoid naming conflict.
update(Object) - Method in class com.jenkov.mrpersister.impl.GenericDao
 
update(Object, Object) - Method in class com.jenkov.mrpersister.impl.GenericDao
 
update(String) - Method in class com.jenkov.mrpersister.impl.JdbcDao
 
update(String, Object[]) - Method in class com.jenkov.mrpersister.impl.JdbcDao
 
update(String, IPreparedStatementManager) - Method in class com.jenkov.mrpersister.impl.JdbcDao
 
update(IObjectMapping, Object, String, Connection) - Method in class com.jenkov.mrpersister.impl.ObjectWriter
 
update(IObjectMapping, Object, Object, String, Connection) - Method in class com.jenkov.mrpersister.impl.ObjectWriter
 
update() - Method in class com.jenkov.mrpersister.impl.PersistenceConfiguration
 
update(Object) - Method in interface com.jenkov.mrpersister.itf.IGenericDao
Same as update(Object objectMappingKey, Object object) but uses the object.getClass() as the object mapping key.
update(Object, Object) - Method in interface com.jenkov.mrpersister.itf.IGenericDao
Updates the record in the database coresponding to the given object, with the values contained in this object, according to the object mapping stored or generated by the given object mapping key.
update(String) - Method in interface com.jenkov.mrpersister.itf.IJdbcDao
Executes the given SQL as an update (PreparedStatement.executeUpdate()).
update(String, Object[]) - Method in interface com.jenkov.mrpersister.itf.IJdbcDao
Executes the given SQL as an update (PreparedStatement.executeUpdate()).
update(String, IPreparedStatementManager) - Method in interface com.jenkov.mrpersister.itf.IJdbcDao
Executes the given SQL as an update (PreparedStatement.executeUpdate()).
update(IObjectMapping, Object, String, Connection) - Method in interface com.jenkov.mrpersister.itf.IObjectWriter
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.
update(IObjectMapping, Object, Object, String, Connection) - Method in interface com.jenkov.mrpersister.itf.IObjectWriter
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.
update() - Method in interface com.jenkov.mrpersister.itf.IPersistenceConfiguration
Updates the MrPersister class with any changes made to this IPersistenceConfiguration.
updateBatch(Object, Collection) - Method in class com.jenkov.mrpersister.impl.AbstractDao
Updates the records in the database coresponding to the given collection of objects, with the values contained in these objects, according to the object mapping stored or generated by the given object mapping key.
updateBatch(Collection) - Method in class com.jenkov.mrpersister.impl.AbstractDao
Same as updateBatch(Object objectMappingKey, Collection objects) the class returned by the getClass() of the first element in the collection as the object mapping key.
updateBatch(Object, Collection, Connection) - Method in class com.jenkov.mrpersister.impl.AbstractDao
Updates the records in the database coresponding to the given collection of objects, with the values contained in these objects, according to the object mapping stored or generated by the given object mapping key.
updateBatch(Collection, Connection) - Method in class com.jenkov.mrpersister.impl.AbstractDao
Same as updateBatch(Object objectMappingKey, Collection objects, Connection connection) the class returned by the getClass() of the first element in the collection as the object mapping key.
updateBatch(Object, Collection, Collection) - Method in class com.jenkov.mrpersister.impl.AbstractDao
Deprecated. Use the updateBatchByPrimaryKeys instead. Renamed to avoid naming conflict.
updateBatch(Object, Collection, Collection, Connection) - Method in class com.jenkov.mrpersister.impl.AbstractDao
Deprecated. Use the updateBatchByPrimaryKeys instead. Renamed to avoid naming conflict.
updateBatch(Collection) - Method in class com.jenkov.mrpersister.impl.GenericDao
 
updateBatch(Object, Collection) - Method in class com.jenkov.mrpersister.impl.GenericDao
 
updateBatch(IObjectMapping, Collection, String, Connection) - Method in class com.jenkov.mrpersister.impl.ObjectWriter
 
updateBatch(IObjectMapping, Collection, Collection, String, Connection) - Method in class com.jenkov.mrpersister.impl.ObjectWriter
 
updateBatch(Collection) - Method in interface com.jenkov.mrpersister.itf.IGenericDao
Same as updateBatch(Object objectMappingKey, Collection objects) the class returned by the getClass() of the first element in the collection as the object mapping key.
updateBatch(Object, Collection) - Method in interface com.jenkov.mrpersister.itf.IGenericDao
Updates the records in the database coresponding to the given collection of objects, with the values contained in these objects, according to the object mapping stored or generated by the given object mapping key.
updateBatch(IObjectMapping, Collection, String, Connection) - Method in interface com.jenkov.mrpersister.itf.IObjectWriter
Updates the records in the database corresponding to the objects contained in the collection passed in parameter objects.
updateBatch(IObjectMapping, Collection, Collection, String, Connection) - Method in interface com.jenkov.mrpersister.itf.IObjectWriter
Updates the records in the database corresponding to the objects contained in the collection passed in parameter objects.
updateBatchByPrimaryKeys(Object, Collection, Collection) - Method in class com.jenkov.mrpersister.impl.AbstractDao
Updates the records in the database coresponding to the given collection of objects, with the values contained in these objects, according to the object mapping stored or generated by the given object mapping key.
updateBatchByPrimaryKeys(Collection, Collection) - Method in class com.jenkov.mrpersister.impl.AbstractDao
Same as updateBatchByPrimaryKeys(Object objectMappingKey, Collection objects, Collection oldPrimaryKeys) the class returned by the getClass() of the first element in the collection as the object mapping key.
updateBatchByPrimaryKeys(Object, Collection, Collection, Connection) - Method in class com.jenkov.mrpersister.impl.AbstractDao
Updates the records in the database coresponding to the given collection of objects, with the values contained in these objects, according to the object mapping stored or generated by the given object mapping key.
updateBatchByPrimaryKeys(Collection, Collection, Connection) - Method in class com.jenkov.mrpersister.impl.AbstractDao
Same as updateBatchByPrimaryKeys(Object objectMappingKey, Collection objects, Collection oldPrimaryKeys, Connection connection) but uses the class returned by the getClass() method of the first object in the collection as the object mapping key.
updateBatchByPrimaryKeys(Collection, Collection) - Method in class com.jenkov.mrpersister.impl.GenericDao
 
updateBatchByPrimaryKeys(Object, Collection, Collection) - Method in class com.jenkov.mrpersister.impl.GenericDao
 
updateBatchByPrimaryKeys(Collection, Collection) - Method in interface com.jenkov.mrpersister.itf.IGenericDao
Same as updateBatchByPrimaryKeys(Object objectMappingKey, Collection objects, Collection oldPrimaryKeys) the class returned by the getClass() of the first element in the collection as the object mapping key.
updateBatchByPrimaryKeys(Object, Collection, Collection) - Method in interface com.jenkov.mrpersister.itf.IGenericDao
Updates the records in the database coresponding to the given collection of objects, with the values contained in these objects, according to the object mapping stored or generated by the given object mapping key.
updateByPrimaryKey(Object, Object, Object) - Method in class com.jenkov.mrpersister.impl.AbstractDao
Updates the record in the database coresponding to the given object, with the values contained in this object, according to the object mapping stored or generated by the given object mapping key.
updateByPrimaryKey(Object, Object) - Method in class com.jenkov.mrpersister.impl.AbstractDao
Same as updateByPrimaryKey(Object objectMappingKey, Object object, Object oldPrimaryKeyValue) but uses the object.getClass() as the object mapping key.
updateByPrimaryKey(Object, Object, Object, Connection) - Method in class com.jenkov.mrpersister.impl.AbstractDao
Updates the record in the database coresponding to the given object, with the values contained in this object, according to the object mapping stored or generated by the given object mapping key.
updateByPrimaryKey(Object, Object, Connection) - Method in class com.jenkov.mrpersister.impl.AbstractDao
Same as updateByPrimaryKey(Object objectMappingKey, Object object, Object oldPrimaryKeyValue, Connection connection) but uses the object.getClass() as the object mapping key.
updateByPrimaryKey(Object, Object) - Method in class com.jenkov.mrpersister.impl.GenericDao
 
updateByPrimaryKey(Object, Object, Object) - Method in class com.jenkov.mrpersister.impl.GenericDao
 
updateByPrimaryKey(Object, Object) - Method in interface com.jenkov.mrpersister.itf.IGenericDao
Same as updateByPrimaryKey(Object objectMappingKey, Object object, Object oldPrimaryKeyValue) but uses the object.getClass() as the object mapping key.
updateByPrimaryKey(Object, Object, Object) - Method in interface com.jenkov.mrpersister.itf.IGenericDao
Updates the record in the database coresponding to the given object, with the values contained in this object, according to the object mapping stored or generated by the given object mapping key.
updateOptimistic(Object, Object) - Method in class com.jenkov.mrpersister.impl.GenericDao
 
updateOptimistic(Object, Object, Object) - Method in class com.jenkov.mrpersister.impl.GenericDao
 
updateOptimistic(IObjectMapping, Object, Object, String, Connection) - Method in class com.jenkov.mrpersister.impl.ObjectWriter
 
updateOptimistic(Object, Object) - Method in interface com.jenkov.mrpersister.itf.IGenericDao
Same as updateOptimistic(Object objectMappingKey, Object object, Object original) but uses the object.getClass() as the object mapping key.
updateOptimistic(Object, Object, Object) - Method in interface com.jenkov.mrpersister.itf.IGenericDao
Updates the record in the database coresponding to the given object, with the values contained in this object, according to the object mapping stored or generated by the given object mapping key.
updateOptimistic(IObjectMapping, Object, Object, String, Connection) - Method in interface com.jenkov.mrpersister.itf.IObjectWriter
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.
updateOptimisticSqlCache - Variable in class com.jenkov.mrpersister.impl.PersistenceConfiguration
 
UpdateResult - Class in com.jenkov.mrpersister.itf
Represents the result of an SQL update.
UpdateResult() - Constructor for class com.jenkov.mrpersister.itf.UpdateResult
 
updateResults - Variable in class com.jenkov.mrpersister.impl.GenericDao
 
updateSqlCache - Variable in class com.jenkov.mrpersister.impl.PersistenceConfiguration
 
UrlGetterMapping - Class in com.jenkov.mrpersister.impl.mapping.method
A subclass of GetterMapping capable of inserting a URL into a PreparedStatement.
UrlGetterMapping() - Constructor for class com.jenkov.mrpersister.impl.mapping.method.UrlGetterMapping
 
UrlSetterMapping - Class in com.jenkov.mrpersister.impl.mapping.method
A subclass of the SetterMapping capable of reading a URL from a ResultSet instance and insert it into a target object, by calling the target object matching setter method.
UrlSetterMapping() - Constructor for class com.jenkov.mrpersister.impl.mapping.method.UrlSetterMapping
 

A B C D E F G H I J K L M N O P R S T U V W