In my Android project, ORMLite is functioning as a cache. I\'m downloading data from a web server and placing it in the database. I\'m calling createOrUpdate
on
You should not be calling createOrUpdate
unless your object already has an id field set. The way ORMLite
determines whether or not it exists in the database is to do a query-by-id on it. The code does:
ID id = extractId(data);
// assume we need to create it if there is no id <<<<<<<<<<<<<<<<<<<<<<<
if (id == null || !idExists(id)) {
int numRows = create(data);
return new CreateOrUpdateStatus(true, false, numRows);
} else {
int numRows = update(data);
return new CreateOrUpdateStatus(false, true, numRows);
}
I'll expand the javadocs to explain this better. They are very weak there. Sorry. I've updated them to be:
This is a convenience method for creating an item in the database if it does not exist. The id is extracted from the data argument and a query-by-id is made on the database. If a row in the database with the same id exists then all of the columns in the database will be updated from the fields in the data parameter. If the id is null (or 0 or some other default value) or doesn't exist in the database then the object will be created in the database. This also means that your data item must have an id field defined.