Bonjour tout le monde.
je travaille sur une petite application avec Hibernate.
tout est marché bien sauf le delete--Suppression d'un enregistrement de ma base de donnée MySQL--.
Bon j m'explique avec du code :
La suppression ne se fait que lorsque je definie le ID de la personne que je veux supprimer (ds Methode deletePerson), et non avec le nom et le prenom seulement, et l'erreur qui me sorte est :
Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54 package personne; import java.util.List; import org.hibernate.Session; import org.hibernate.Transaction; public class PersonManager { /** * @param args */ public void createPerson(int a,String n,String p){ Session session=HibernateSessionFactory.currentSession(); Transaction tx=session.beginTransaction(); Personne p1=new Personne(); p1.setAge(a); p1.setNom(n); p1.setPrenom(p); session.save(p1); tx.commit(); } public List listPersons(){ Session session=HibernateSessionFactory.currentSession(); Transaction tx=session.beginTransaction(); List result=session.createQuery("from Personne").list(); tx.commit(); return result; } public List listPerson(String n, String p){ Session session=HibernateSessionFactory.currentSession(); Transaction tx=session.beginTransaction(); List result=session.createQuery("from Personne where nom='"+n+"'and prenom='"+p+"'").list(); tx.commit(); return result; } public void deletePerson(Personne p){ Session session=HibernateSessionFactory.currentSession(); Transaction tx=session.beginTransaction(); session.delete(p); tx.commit(); } public static void main(String[] args) { // TODO Auto-generated method stub PersonManager pm=new PersonManager(); Personne per=new Personne(); per.setNom("bobo"); per.setPrenom("dodo"); /*per.setId(3);*/ pm.deletePerson(per); HibernateSessionFactory.closeSession(); } }
et c'est la meme erreur qui me sorte lorsque j'execute la methode listPerson (Recherche d'une personne avec le nom et le prenom en parametre).
Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15 Exception in thread "main" org.hibernate.StaleStateException: Batch update returned unexpected row count from update: 0 actual row count: 0 expected: 1 at org.hibernate.jdbc.BatchingBatcher.checkRowCount(BatchingBatcher.java:92) at org.hibernate.jdbc.BatchingBatcher.checkRowCounts(BatchingBatcher.java:78) at org.hibernate.jdbc.BatchingBatcher.doExecuteBatch(BatchingBatcher.java:57) at org.hibernate.jdbc.AbstractBatcher.executeBatch(AbstractBatcher.java:174) at org.hibernate.engine.ActionQueue.executeActions(ActionQueue.java:226) at org.hibernate.engine.ActionQueue.executeActions(ActionQueue.java:141) at org.hibernate.event.def.AbstractFlushingEventListener.performExecutions(AbstractFlushingEventListener.java:274) at org.hibernate.event.def.DefaultFlushEventListener.onFlush(DefaultFlushEventListener.java:27) at org.hibernate.impl.SessionImpl.flush(SessionImpl.java:730) at org.hibernate.impl.SessionImpl.managedFlush(SessionImpl.java:324) at org.hibernate.transaction.JDBCTransaction.commit(JDBCTransaction.java:86) at personne.PersonManager.deletePerson(PersonManager.java:35) at personne.PersonManager.main(PersonManager.java:43)
bon avant de terminer voila mon fichier de mapping :
et le fichier de configuration :
Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16 <?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE hibernate-mapping PUBLIC "-//Hibernate/Hibernate Mapping DTD 3.0//EN" "http://hibernate.sourceforge.net/hibernate-mapping-3.0.dtd"> <hibernate-mapping> <class name="personne.Personne" table="personne"> <id name="id" column="Id"> <generator class="increment"/> </id> <property name="nom" column="Nom"/> <property name="prenom" column="Prenom"/> <property name="age" column="Age"/> </class> </hibernate-mapping>
Si quelqu'un a déjà rencontré le meme probleme que moi, qu'il m'explique qu'est ce qu'il faut faire ?
Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20 <?xml version='1.0' encoding='UTF-8'?> <!DOCTYPE hibernate-configuration PUBLIC "-//Hibernate/Hibernate Configuration DTD 3.0//EN" "http://hibernate.sourceforge.net/hibernate-configuration-3.0.dtd"> <!-- Generated by MyEclipse Hibernate Tools. --> <hibernate-configuration> <session-factory> <property name="connection.username">root</property> <property name="connection.url">jdbc:mysql://localhost:3306/hibernatebd</property> <property name="dialect">org.hibernate.dialect.MySQLDialect</property> <property name="myeclipse.connection.profile">ProTest</property> <property name="connection.driver_class">com.mysql.jdbc.Driver</property> <mapping resource="personne/personne.hbm.xml" /> </session-factory> </hibernate-configuration>
et Merci bien
Partager