• 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:

help regarding JBOSS QL for EJB 2.0...

 
Ranch Hand
Posts: 186
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
HI,
I am using EJB 2.0 (CMP)for my application & using JBOSS4.0.3 as application server. In my one of EJB I am using JBOSS QL (as group by clause is ot supported by ejb ql FOR ejb2.0). I am using following XDOCLET for JBOSS QL inside my Bean's implementation class :-
=======================
* @jboss.query = "select Count(o) from OrderMaster as o GROUP BY o.orderno"
* signature = "Collection findBydatecount()"
======================
& after building my project Following lines I can see in my jboss-cmp-jdbc.xml for my above JBOSS-QL:-
=================================
<query>
<query-method>
<method-name>findBydatecount</method-name>
<method-params>
</method-params>
</query-method>
</query>
==================================
But I can't see any method in my home interfaces(local/remote home) corresponding to this JBOSS-QL method. So how should I access this JBOSS-QL generated method "findBydatecount" inside my client code?
Please help me.
Thank you in advance.
pras
 
This one time, at bandcamp, I had relations with a tiny ad.
Smokeless wood heat with a rocket mass heater
https://woodheat.net
reply
    Bookmark Topic Watch Topic
  • New Topic