Cannot retrieve the latest update value from database after running the ORM Lite UpdateBuilder.update() in android
问题 I have trouble when updating the data in android by using ORM Lite because my updated data is not affected in database immediately. After the update process, I query the data from the database but I got the old data that was the same as before I update. So, I solved this problem by refreshing each updated object by using refresh(Object) after the update process, the problem was OK(I can access the latest updated data from data in next query). But I am not sure is it the best way or not? If