Hi
 
I have an entity called "Schedule" with CMP fields:
code Long,
actionDate GregorianCalendar
 
I use j2ee implementation reference, my create table is
CREATE TABLE "ScheduleEJBTable" ("actionDate" LONG RAW ,
    "code" NUMERIC(22,0) , CONSTRAINT "pk_ScheduleEJBTabl"
    PRIMARY KEY ("code") )
 
Oracle 8.1.7
 

I would like to implement an method that selects all "Schedule"s with a GregorianCalendar
 
public Collection findByDate(GregorianCalendar).
 
My Statement EJB-QL and my statement SQL.
 
How make?
 
Thanks

Reply via email to