• 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
  • Tim Cooke
  • paul wheaton
  • Jeanne Boyarsky
  • Ron McLeod
Sheriffs:
  • Paul Clapham
  • Liutauras Vilda
  • Devaka Cooray
Saloon Keepers:
  • Tim Holloway
  • Roland Mueller
Bartenders:

Doubts on EJB-QL

 
Greenhorn
Posts: 19
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
I got some basic doubts . Kindly help.

*Under what element in the DD do you place the EJB-QL statement?
*And how do you use them in an entity bean method?
*Can you direcly run an EJB-QL statement from a bean method without using the DD?How ?
* "CMR field is ALWAYS another entity bean's 'local' interface" - What if I have only 'remote' interfaces ? How do I relate beans then ?

Thanks,
Pradeep.D
 
Ranch Hand
Posts: 569
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator

*Under what element in the DD do you place the EJB-QL statement?


<query>
...
<ejb-ql>your ejb ql goes here</ejb-ql>
</query>

*And how do you use them in an entity bean method?


ejb ql are for finder and select methods, so you define the finder/select methods in the home intf/bean class first and add the ejb ql in the DD.

*Can you direcly run an EJB-QL statement from a bean method without using the DD?How ?


EJB-QL are instructions for the container to generate actual SQL (or other db specific queries) FOR THE finder/select methods you defined. You CANNOT execute EJB-QL directly.

* "CMR field is ALWAYS another entity bean's 'local' interface" - What if I have only 'remote' interfaces ? How do I relate beans then ?



No, you cannot use remote interfaces with CMR. If you really need remote interface for the ebean, you have to define both local and remote interfaces. You can define both at the same time.

Hope these help.
 
Pradeep Dhavakumar
Greenhorn
Posts: 19
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Thanks Alec..
 
Villains always have antidotes. They're funny that way. Here's an antidote disguised as a tiny ad:
New web page for Paul's Rocket Mass Heaters movies
https://coderanch.com/t/785239/web-page-Paul-Rocket-Mass
reply
    Bookmark Topic Watch Topic
  • New Topic