-->
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.  [ 2 posts ] 
Author Message
 Post subject: Insert into database with joined-subclass
PostPosted: Tue Apr 06, 2004 11:55 am 
Newbie

Joined: Wed Mar 31, 2004 2:40 pm
Posts: 1
Hi all,

I have two classes, Bloqueio that extends Periodo. I am using jsp pages to insert data in my database. I configure hibernate to use joined-subclass, but I have a message: net.sf.hibernate.JDBCException: could not insert: [com.gfmi.delivery.wms.agendamento.Periodo#1]

My hbm file:


Code:
<?xml version="1.0"?>
<!DOCTYPE hibernate-mapping
  PUBLIC "-//Hibernate/Hibernate Mapping DTD//EN"
  "http://hibernate.sourceforge.net/hibernate-mapping-2.0.dtd">

<hibernate-mapping >
  <class name="com.gfmi.delivery.wms.agendamento.Periodo" table="DELIV_WMS_PERIODO" >

    <id name="id" type="int" column="PK_ID_PERIODO">
      <generator class="increment" />
    </id>

   <property name="horaInicio" column="DH_HORA_INICIO" type="date" not-null="false" />
   <property name="horaEncerramento" column="DH_HORA_ENCERRAMENTO" type="date" not-null="false" />
   
   <joined-subclass name="com.gfmi.delivery.wms.agendamento.Bloqueio" table="DELIV_WMS_BLOQUEIO">
         <key column="FK_ID_PERIODO" />
         <property name="Data" column="DH_DATA" type="date" not-null="false" />
         <property name="tipo" column="N_TIPO" type="int" not-null="false" />
         <property name="diaSemana" column="N_DIA_SEMANA" type="int" not-null="false" />
    </joined-subclass>
   
   </class>
</hibernate-mapping>


I don't know if this is the right way to do.

Thanks all


Top
 Profile  
 
 Post subject:
PostPosted: Wed Apr 07, 2004 7:15 am 
Hibernate Team
Hibernate Team

Joined: Sun Sep 14, 2003 3:54 am
Posts: 7256
Location: Paris, France
Show the *full* stack trace

_________________
Emmanuel


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

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.