Hibernate 데이터 수정 실례 상세 설명
1.HQL 방식 으로 업데이트
Person 의 name 과 age 를 id 로 표시 합 니 다.
Session currentSession = H3Utils.getCurrentSession();
currentSession.beginTransaction();
// HQL
String hqlString = "update Person p set p.name=? , p.age=? where p.id=?";
// Query
Query query = currentSession.createQuery(hqlString);
//
query.setParameter(0, " ");
query.setParameter(1, 18);
query.setParameter(2, 1);
//
query.executeUpdate();
currentSession.getTransaction().commit();
2 HQL 방식 으로 업데이트
public void updateFunction2() {
Session currentSession = H3Utils.getCurrentSession();
currentSession.beginTransaction();
// SQL
String sql = "UPDATE t_person_list SET name='cv',age=2 WHERE id=4" ;
//
currentSession.createSQLQuery(sql).executeUpdate();
//
currentSession.getTransaction().commit();
}
3 OID 로 업데이트
Session currentSession = H3Utils.getCurrentSession();
currentSession.beginTransaction();
Person person = new Person();
person.setId(44);
person.setName("ccb");
person.setAge(90);
currentSession.update(person);
currentSession.getTransaction().commit();
궁금 한 점 이 있 으 시 면 메 시 지 를 남기 거나 본 사이트 의 커 뮤 니 티 에 가서 토론 을 교류 하 세 요.읽 어 주 셔 서 감사합니다. 도움 이 되 셨 으 면 좋 겠 습 니 다.본 사이트 에 대한 지지 에 감 사 드 립 니 다!
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
[JPA] 즉시로딩(EAGER)과 지연로딩(LAZY) (왜 LAZY 로딩을 써야할까?) (1)Proxy는 이 글의 주제인 즉시로딩과 지연로딩을 구현하는데 중요한 개념인데, 일단 원리는 미뤄두고 즉시로딩과 지연로딩이 무엇인지에 대해 먼저 알아보자. 눈 여겨 볼 곳은 'fetch = FetchType.EAGER...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.