-->
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: Hilfe bei Hibernate Query auf Postgresql Datenbank
PostPosted: Wed Apr 18, 2007 8:58 am 
Newbie

Joined: Wed Apr 18, 2007 7:38 am
Posts: 1
Hallo,

ich habe ein Problem mit einer Query die ich ausführen möchte. Und zwar wähle ich einen Zeitraum in meiner Applikation aus, in der ich Informationen aus der Datenbank haben möchte. Diese sind in Form von einem Datum. Meine Query sieht folgendermaßen aus

result = session.createQuery("from net.clarity_ag.ccm_statistics.hibernate.pojo.Calls WHERE begining > timestamp'?' - INTERVAL '?' AND begining < timestamp'?' INTERVAL '?'").setString(0,dateString.trim()).setString(1, intervallVor).setString(2,dateString.trim()).setString(3,intervallAfter).list();

Beim Ausführen der Query erhalte ich eine fehlermeldung. Lasse ich diese Query aber in postgresql laufen funktioniert diese einwandfrei.

Ich weiss, dass die Query so nicht formuliert werden kann, meine Frage wie aber?

Die Fehlermeldung lautet

Caused by: org.hibernate.hql.ast.QuerySyntaxException: unexpected token: '?' near line 1, column 84 [from net.clarity_ag.ccm_statistics.hibernate.pojo.Calls WHERE begining > timestamp '?' - INTERVAL '?'AND begining < timestamp'?' INTERVAL '?']
at org.hibernate.hql.ast.QuerySyntaxException.convert(QuerySyntaxException.java:31)
at org.hibernate.hql.ast.QuerySyntaxException.convert(QuerySyntaxException.java:24)
at org.hibernate.hql.ast.ErrorCounter.throwQueryException(ErrorCounter.java:59)

Ich kann mir nicht vorstellen dass das Fragezeichen den Fehler auslöst. Ich würde gerne wissen, wie ich diese Query denn richtig stellen kann.


Top
 Profile  
 
 Post subject:
PostPosted: Wed Apr 18, 2007 9:39 am 
Regular
Regular

Joined: Thu Jan 27, 2005 8:58 am
Posts: 80
Du musst bedenken, dass Du bei einem Query in HQL und nicht in SQL oder dem jeweiligen Dialekt Deiner Datenbank schreibst. Das übernimmt ja Hibernate für Dich. Statt dessen musst Du Dich hier halt mit HQL vertraut machen

Statt
Quote:
session.createQuery("from net.clarity_ag.ccm_statistics.hibernate.pojo.Calls WHERE begining > timestamp'?' - INTERVAL '?' AND begining < timestamp'?' INTERVAL '?'")


solltest Du

Query q = session.createQuery("from net.clarity_ag.ccm_statistics.hibernate.pojo.Calls WHERE begining > :timestamp1 AND begining < :timestamp2");
q.setDate("timestamp1", new Date());//statt dem konstruktor hier Dein eigentliches Date-Objekt
q.setDate("timestamp2", new Date());//s.o.
result = q.list();

ausprobieren


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.