-->
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: Problem bei Abfrage mit 1:1 Beziehung
PostPosted: Fri Aug 27, 2010 3:38 am 
Newbie

Joined: Thu Jul 15, 2010 5:06 am
Posts: 7
Hallo!
Ich habe ein Problem mit einer 1:1 Abfrage in hibernate. Ich hab zwei Tabellen die unidirektional miteinander verbunden sind.
In der ersten Tabelle gibt es einen Fremdschlüssel der auf die Werte in der zweiten Tabelle verweist. Nun möchte ich eine Abfrage machen die mir jene Datensätze ausgibt die einen spezifischen Fremdschlüssel haben. Und irgendwie geht das nicht, ich weiß auch nicht warum.

Meine Abfrage in HQL:
Code:
List list = session.createSQLQuery("SELECT b from DmisSessionDiagnosis b WHERE b.session.PID="+record.getSession().getPID()).list();


Ich bekomme immer folgende Fehlermeldung:
Code:
Caused by: com.mysql.jdbc.exceptions.MySQLSyntaxErrorException: Unknown column 'DmisSession_id' in 'where clause'


Mein XML Mapping:
Code:
<?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 package="at.ac.uibk.dbis.dmis.server.application.diagnosis">
   <class name="DmisSessionDiagnosis" table="DmisSessionDiagnosis" lazy="false">
      <id name="PID" column="PID" >
         <generator class="increment"/>
      </id>
      <property name="creationDate" column="CreationDate" type="timestamp" />
      <property name="subjectiveSympthomsPatient" column="SubjectiveSympthomsPatient" />
      <property name="objectiveSympthomsMedicin" column="ObjectiveSympthomsMedicin" />
      
      <many-to-one name="record" class="DiagnosisRepositoryRecord" cascade="all" unique="true">
         <column name="DiagnosisRepositoryRecord_id"></column>
      </many-to-one>
      <many-to-one name="session" class="at.ac.uibk.dbis.dmis.server.application.session.DmisSession" cascade="all" unique="true">
         <column name="DmisSession_id"></column>
      </many-to-one>   
   </class>
</hibernate-mapping>


Hier gibt es die Spalte DmisSession_id. Woran kann dieser Fehler liegen?

Ich hoffe mir kann jemand helfen!
Florian


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.