-->
These old forums are deprecated now and set to read-only. We are waiting for you on our new forums!
More modern, Discourse-based and with GitHub/Google/Twitter authentication built-in.

All times are UTC - 5 hours [ DST ]



Forum locked This topic is locked, you cannot edit posts or make further replies.  [ 1 post ] 
Author Message
 Post subject: exception hibernate alors que tout marche comme il faut
PostPosted: Sun Aug 16, 2009 5:31 pm 
Newbie

Joined: Sun Aug 16, 2009 5:07 pm
Posts: 2
Bonjour à tous,

j'ai une exception bizarre de la part d'hibernate :
Code:
java.sql.BatchUpdateException - Column 'produitId' cannot be null

alors que ce produitId est bien présent et surtout il insère bien au base de donné comme il faut

voici mon xml de mapping:
Code:
<class name="entity.Produit" table="produits">
         <id name="id">
            <generator class="native" />
         </id>
         <property name="prix" />
         <property name="disponibilite" />
         <property name="nbrImage" />
         <property name="reduction" />
         <property name="produitTaille" />
         <property name="produitCouleur" />
         <set name="produitInfo" lazy="false" cascade="all">
            <key column="produitId"/>
            <one-to-many class="entity.ProduitInfo" />
         </set>
   </class>
   
   <class name="entity.ProduitInfo" table="produitinfo">
         <composite-id>
            <key-property name="produitId"/>
            <key-property name="langueId"/>
         </composite-id>
         <property name="titre" />
         <property name="description" />
   </class>


Dans Produit j'ai une set de ProduitInfo et tous les attributs coté Java et Base de donnée sont correctement remplies, mais je ne sais pas pourquoi à la fin il me génère cette exception, je vous remercie d'avance pour toutes idées qui m'adirai à ressoude cette casse-tête, car pour l'instant je dois faire un try/catch avec un cacth vide et je ne trouve pas ça très propre


Top
 Profile  
 
Display posts from previous:  Sort by  
Forum locked This topic is locked, you cannot edit posts or make further replies.  [ 1 post ] 

All times are UTC - 5 hours [ DST ]


You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum

Search for:
© Copyright 2014, Red Hat Inc. All rights reserved. JBoss and Hibernate are registered trademarks and servicemarks of Red Hat, Inc.