Hi
 
I'm trying to deploy 1 EJB's in the SUN j2ee reference implementation.
 
My EJB have one cmp field name "data" like:
 
/**
     * @return         The Data value
     * @J2EE_METHOD    -- getData
     */
    public abstract GregorianCalendar getData();
 
    public abstract void setData(GregorianCalendar  newData);
 
In "Home" i have one findMethod :
 
 
    /**
    * @J2EE_METHOD  --  findByPrimaryKey
     * Called by the client to find an EJB beanS instanceS
     */
    public Collection findByDataHora (GregorianCalendar dataHora) throws RemoteException, FinderException;
 
    
How do I make EJBQL statement?
 
Help
 
�lvaro Mota Gon�alves

Reply via email to