I have a table with a name messagesthat contains columns toUser, messageand status. I want to update all message statuses by a specific user.
So, I wrote such a request,
Session s = DB.getSession();
s.createSQLQuery("UPDATE `message` SET `status`='0' WHERE `toUser`='3'").executeUpdate();
s.close();
But then I was told that updating using pure hibernate methods is faster and more efficient (I think it should do something with the sleep pool), as shown below.
Session s = DB.getSession();
Transaction tr = s.beginTransaction();
Criteria cr = s.createCriteria(Connection.Pojo.Message.class);
cr.add(Restrictions.eq("toUser", 3));
List<Connection.Pojo.Message> l = cr.list();
for (Connection.Pojo.Message msg : l) {
msg.setStatus((byte) 0);
s.update(msg);
}
tr.commit();
s.close();
So my question is the fastest way to update these lines? Please provide a detailed answer if possible.
Thanks in any advice.
source
share