• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

How to write this find Query Element

 
Greenhorn
Posts: 2
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi Everybody,
I'm totally new to EJB, I have been trying to run a EJB program but in the mid way I faced a problem in weblogic-cmp-rdbms-jar.xml file. This is regarding the finder-query element.
My xml defination is like this
<finder>
<finder-name>findInRange</finder-name>
<finder-param>float</finder-param>
<finder-param>float</finder-param>
<finder-query>taxRate BETWEEN $0 AND $1</finder-query>
</finder>
The findInRange function take two float values as argument and I wanted the SQL to be something like
SELECT taxRate FROM TAXEJBTABLE WHERE taxRate BETWEEN $0 AND $1
How do I give this statement in the finder-query elemnt
Any Sort of help/hints will be appreciated...
Thanks...
bnadesan
 
Hey, I'm supposed to be the guide! Wait up! No fair! You have the tiny ad!
a bit of art, as a gift, that will fit in a stocking
https://gardener-gift.com
reply
    Bookmark Topic Watch Topic
  • New Topic