i can't put COUNT working :(

need help.

i have this


  |  * @jboss.query 
  |  *                                  signature = "Integer 
ejbSelectCountBetwenDates(java.sql.Timestamp ti, java.sql.Timestamp tf )"
  |  *                                  query = "SELECT COUNT(o.facturaId) FROM 
Factura o WHERE o.data > ?1 AND o.data < ?2"
  |  *  
  | 

and


  |     /**
  |      * 
  |      * @ejb.home-method view-type = "local"
  |      */
  |     public Integer ejbHomeCountBetwenDates(java.sql.Timestamp ti, 
java.sql.Timestamp tf) throws FinderException{
  |             
  |             return ejbSelectCountBetwenDates(ti,tf);
  |     }
  |     
  |     
  |     /**
  |      * 
  |      * @param ti
  |      * @param tf
  |      * @return
  |      * @throws FinderException
  |      * 
  |      * @ejb.select
  |      */
  |     public abstract Integer ejbSelectCountBetwenDates(java.sql.Timestamp ti, 
java.sql.Timestamp tf ) throws FinderException; 
  | 
  | 

and the error:


  | java.lang.ClassCastException
  |         at 
com.multicert.project.datasystem.seef.ejb.FacturaCMP$Proxy.ejbSelectCountBetwenDates(<generated>)
  |         at 
com.multicert.project.datasystem.seef.ejb.FacturaBean.ejbHomeCountBetwenDates(FacturaBean.java:141)
  |         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
  |         at 
sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
  |         at 
sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
  |         at java.lang.reflect.Method.invoke(Method.java:324)
  |         at 
org.jboss.ejb.EntityContainer$ContainerInterceptor.invokeHome(EntityContainer.java:1054)
  | 
  | 


any help ??

thanks in advance

View the original post : 
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3841351#3841351

Reply to the post : 
http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3841351


-------------------------------------------------------
This SF.Net email sponsored by Black Hat Briefings & Training.
Attend Black Hat Briefings & Training, Las Vegas July 24-29 - 
digital self defense, top technical experts, no vendor pitches, 
unmatched networking opportunities. Visit www.blackhat.com
_______________________________________________
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user

Reply via email to