如何使用Hibernate模板 THI是HQL語句 「更新登錄設置empSmartId = 48750005」 +」,其中empPassword = 6328ef1675ddb7106eba8dc2661961d7" 使用getHibernatetemplate的HibernateTemplate更新查詢
()
當前代碼使用HQL更新查詢:
public class LoginDaoImp extends HibernateDaoSupport implements LoginDao {
public boolean resetAttempt(Login login) {
try { login.setAttempt(0);
getHibernateTemplate().update(login);
return true;
} catch (Exception e) { e.printStackTrace(); }
return false; }
i can save whole pojo class above code work but i want to use where condition to update only hibernateTemplate to update the data
你有嘗試過自己嗎?顯示你的努力,並告訴我們出了什麼問題,我們可能會幫助你。 – mthmulders
sir List l1 = getHibernateTemplate()。find(「from Login」);這將返回所有我想知道如何使用此更新的數據登錄設置empSmartId = 48750005「+」其中empPassword = 6328ef1675ddb7106eba8dc2661961d7「 – matrix
這行代碼不會執行任何與更新有關的任何操作。 「已經顯示先前的研究和努力的零證據的部分 – mthmulders