Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I want to fetch k nearest value to a given value in Hibernate I use this command:

List li1 = session.getNamedQuery("NazerResult.searchnearestasc").setParameter("e", tarefe).setParameter("v", vahed).setParameter("s", cluster_no).setParameter("f", fieldvalue).setMaxResults(k).list();

and the NazerResult.searchnearestasc NamedQuery is:

 query = "select t FROM NazerResult t WHERE t.tarafe=:e AND t.vahed=:v AND"
    + " t.cluster_no=:s AND t.boxweight <=:f ORDER BY boxweight ASC"

It works properly except for a given value that is smallest than all of the value in database for this value it doesn't return anything do you know what is my problem?

share|improve this question
You should improve your accept rate – SJuan76 Nov 15 '12 at 20:00
how to do this thing? – saeed arash Nov 15 '12 at 20:10
Revise the questions you have asked and mark the correct answer as such. If nobody wrote a correct answer, you can write it (if you found it later) and mark it by itself so other people that finds your question can know how it worked. – SJuan76 Nov 15 '12 at 21:40
Your question is not very clear. What is this query supposed to do? You're talking of the nearest values, but nearest to what? You're toalking about a given value smaller than all the values. Which value? – JB Nizet Nov 15 '12 at 22:10
Are you sure that issue is somewhere in hibernate? I didn't get your question clearly, but I think you are concerned about results you are getting from named query. First run named query directly in database & see what you are getting. Whatever results you are getting in DB, if you get in hibernate then your hibernate code is fine & you need to modify DB query i.e. named query. – Ravi K Nov 16 '12 at 12:10

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.