RE: Exception when using java.sql.Date as an id

2007-02-07 Thread Patrick Linskey
org > Subject: Re: Exception when using java.sql.Date as an id > > Thanks, I'll open a JIRA report and take a crack at a solution. > > On 2/7/07, Craig L Russell <[EMAIL PROTECTED] > wrote: > > > > > > On Feb 7, 2007, at 1:55 PM, Patrick Linskey wrote: >

Re: Exception when using java.sql.Date as an id

2007-02-07 Thread Michael Dick
Thanks, I'll open a JIRA report and take a crack at a solution. On 2/7/07, Craig L Russell <[EMAIL PROTECTED] > wrote: On Feb 7, 2007, at 1:55 PM, Patrick Linskey wrote: >> It's coming from the generated bytecode which expects there >> to be a getId >> method that returns the same type of the

Re: Exception when using java.sql.Date as an id

2007-02-07 Thread Craig L Russell
On Feb 7, 2007, at 1:55 PM, Patrick Linskey wrote: It's coming from the generated bytecode which expects there to be a getId method that returns the same type of the Id, however java.sql.Date is using the same ID class as java.util.Date. Do we need a separate class for java.sql.Date? It looks

RE: Exception when using java.sql.Date as an id

2007-02-07 Thread Patrick Linskey
> It's coming from the generated bytecode which expects there > to be a getId > method that returns the same type of the Id, however > java.sql.Date is using > the same ID class as java.util.Date. Do we need a separate class for > java.sql.Date? It looks like we either need a separate type for j