-->
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: Hibernate mssql getSingleResult()
PostPosted: Wed Nov 06, 2013 2:53 am 
Newbie

Joined: Mon Nov 04, 2013 9:07 pm
Posts: 2
Hallo,

gibt es einen bestimmten Grund warum Hibernate + MSSQL + getSingleResult() nicht kooperieren wollen ? oder liegt es nur an "falschen" Abfragen ?

Hab ein NamedQuery erstellt :

Select count(*) from User u where u. ....

Und dann em.getNamedQuery(..).getSingleResult() (was ja beim count (*) schon irgendwie nahe liegt...) und eine nette : "javax.persistence.PersistenceException: org.hibernate.exception.SQLGrammarException: Incorrect syntax near 'limit'." ist die Folge...

Mit Hibernate + MySQL gehts ohne Probleme ;) selbe query, selber code ohne Probleme.

Das selbe als ich einen User anhand von Username + Passowrd (Username ist unique...) finden will und ein NamedQuery wie folgt erstelle :

Select u from User u where u.uName = :name AND u.pass = :uPass

dann wieder mit em.getSingleResult() und ganz unerwartet wieder ein Syntax-fehler nahe "limit"

Aber vielleicht heißt die Funktion ja falsch... vielleicht sollte es ja getSingleResultButDonTTryWithMSSQL() heißen..

Der Workaround (für alle die zufällig das selbe Problem haben sollten) :

stat .getSingleResult() kann man .getResultList().get(0) schreiben...

wenn man sich das generierte SQL Statement (mit getSingleResult() ) anschaut, wird am ende vom select ein " limit = ? " hingeschrieben, ich hoffe zwar das es intern mit " limit = 1 " ersetzt wird.

MfG


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.