|
I was
able to sort this issue.
When
you implement TimeStampable two methods need to be
overidden:
public void jdoSetTimeStamp(long
l)
{ setTimeStamp(l); } public long jdoGetTimeStamp() { return getTimeStamp(); } Since
the runtime error message was complaining about the getTimeStamp method not
available, I add two additional methods:
public long getTimeStamp()
{ return timeStamp; } public void setTimeStamp(long _timeStamp) { this.timeStamp = _timeStamp; } Another issue was that I had defimed in my Mapping Table the IDENTITY as
"BookTitle" as Varchar.
If I
wanted to change the book title I got another titel, using the UPDATE command I
got a runtime error relating to the TimeStamp no longer in cache. But this is no
longer a problem since I load the object and apply the commit
command.
regards
John.
-----Original Message-----
From: John Greene [mailto:[EMAIL PROTECTED] Sent: Wednesday, February 15, 2006 12:16 PM To: [email protected] Subject: RE: [castor-user] BIGINT Support in Castor Hi
Werner,
Yes, I
agree that it should work as is.
I'd
like to run a few more test at my end first; if I continue to hit a "brick wall"
I'll raise a new issue.
regards
John
|
- FW: [castor-user] BIGINT Support in Castor John Greene
- RE: [castor-user] BIGINT Support in Castor Werner Guttmann
- RE: [castor-user] BIGINT Support in Castor John Greene
- RE: [castor-user] BIGINT Support in Castor Werner Guttmann

