I think you need RTFM. I read ORMLite for a long time , and I think it covers pretty wellUpdateBuilder . Feel free to ask more specific questions, and I can add more details if not.
For quoting from documents:
DAO UPDATE DELETE. , WHERE, , no where(). Delete , WHERE, , ().
Goal:
UpdateBuilder<Goal, Integer> updateBuilder = goalDao.updateBuilder();
updateBuilder.updateColumnValue("goal_title", "some other title");
updateBuilder.updateColumnValue("goal_why", "some other why");
updateBuilder.where().eq("goal_desc", "unknown description");
updateBuilder.update();
, .