Re: [castor-dev] [JDO?] ClassMolder.create FieldMolder.PERSISTANCECAPABLE type field bug?

2004-05-26 Thread Jon Wilmoth
Should I create a bugzilla bug to track the resolution of this issue? --- Jon Wilmoth <[EMAIL PROTECTED]> wrote: > > 1) Before creating a BookContract instance, how have > you loaded the other entities? Using Database, > load() > I assume. And when you are about to create the > BookContract ins

Re: [castor-dev] Using FieldHandler?

2004-05-26 Thread Sudhendra Seshachala
Title: Message NP. It is open source. You are well come to give it back. :) Thanks Sudhi -Original Message- From: Gawde, Kiran [mailto:[EMAIL PROTECTED] Sent: Wed 5/26/2004 9:43 AM To: '[EMAIL PROTECTED]' Cc: Subject: Re: [castor-dev] Using FieldHandler? Thanks for the tip

[castor-dev] Re: Castor and Oracle Blob/Clob 4k+ patch

2004-05-26 Thread Werner Guttmann
Mattias, let's please wait for a reply from Bruce as I hardly use CLOBs .. ;-). Afaik, there is not other bug open related to this issue. In general, we would be very interested to see your patch. As such, once Bruce has replied, can you please open a bug report as http://bugzilla.exolab.org, a

Re: [castor-dev] Using FieldHandler?

2004-05-26 Thread Gawde, Kiran
Title: Message Thanks for the tip. It worked. Since FieldHander is a feature, shouldn't we have it well documented. Atleast in javadoc.   Regards, Kiran -Original Message-From: Sudhendra Seshachala [mailto:[EMAIL PROTECTED] Sent: Tuesday, May 25, 2004 12:12 PMTo: [EMAIL PRO

Re: [castor-dev] Using FieldHandler?

2004-05-26 Thread Gawde, Kiran
Hi, Advantage of FieldHandler is that you don't need to modify original class. BTW, the tip from Sudhendra helped. Thanks, Kiran -Original Message- From: Crasnier Stéphane [mailto:[EMAIL PROTECTED] Sent: Wednesday, May 26, 2004 12:05 AM To: [EMAIL PROTECTED] Subject: Re: [castor-dev]

[castor-dev] Castor and Oracle Blob/Clob 4k+ patch

2004-05-26 Thread Mattias Bogeblad
Hi,   I’ve been battling the infamous oracle bug that will not let you handle clobs and blobs above 4k in size for almost 1 day now and I got it to work in my Ordinary java-program but castor still bugs me. I went into the SQLTypes.java and wrote some special handling of those datatypes

Re: [castor-dev] minOccurs versus enumeration question

2004-05-26 Thread Claude Vedovini
Title: RE: [castor-dev] minOccurs versus enumeration question Hi, I'm not sure if this can help, however I already noticed that when the XML contains an empty element the object's corresponding setter is called with a null value instead of the empty String ""... Anyhow, this is not a schema

Re: [castor-dev] Using FieldHandler?

2004-05-26 Thread Crasnier Stéphane
Hi, Instead of using a FieldHandler, I prefer performing the mapping in the getter/setter like : protected final static String PERMITTED = "Permitted"; protected final static String DENY = "Deny"; protected String myField; public void setFooBoolean(boolean _boolean) { // May be the contrary