Calendar result class

2009-02-06 Thread Christopher . Mathrusse
could not instantiate result class. Cause: java.lang.IllegalAccessException: Class com.ibatis.common.resources.Resources can not access a member of class java.util.Calendar with modifiers "protected" So clearly my TypeHandlerCallback is not being invoked. So what am I overlooking?

Re: Result Class

2008-11-21 Thread Kai Grabfelder
.sql.SQLException: ORA-00923: FROM keyword not found where > expected > > > It only works if I get rid of the 'dot' from resourceType.code and > resourceType.description > I can have only plain classes as Result Class? > > Cheers, > > > Bruno > &

Result Class

2008-11-19 Thread Bruno Frascino
work? I am getting an error saying : --- Cause: java.sql.SQLException: ORA-00923: FROM keyword not found where expected It only works if I get rid of the 'dot' from resourceType.code and resourceType.description I can have only plain classes as Result Class? Cheers

Result class with incorrect property names

2008-04-21 Thread Nathan Clement
ata mapper raise an error if it can't find a property on a result class for a column? Thanks, Nathan Get the name you always wanted with the new y7mail email address. www.yahoo7.com.au/y7mail

Re: Help needed to retrieve result class has ArrayList in its attributes.

2007-07-17 Thread Nathan Maves
I think you are looking for the complex properties functionality on page 36 of the developers manual. Nathan On 7/17/07, Jane Phillips <[EMAIL PROTECTED]> wrote: Hello, I need help to retrieve a query which one ID(product) assoicated many other info(client names etc). The lay out as followin

Help needed to retrieve result class has ArrayList in its attributes.

2007-07-17 Thread Jane Phillips
Hello, I need help to retrieve a query which one ID(product) assoicated many other info(client names etc). The lay out as followings: table 1 : products column 1) productID column 2) name column 3) desc table 2: product_Client. in this table one product ID can have multi

RE: ResultMap and Result class

2007-02-19 Thread Christopher . Mathrusse
Yes, but usually I see that used with properties of the Result class. How can I use that with the Result class itself? From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of "Larry Meadors" <[EMAIL PROTECTED]>Sent: Monday, February 19, 2007 5:10

RE: ResultMap and Result class

2007-02-19 Thread Christopher . Mathrusse
Yes, but usually I see that used with properties of the Result class. How can I use that with the Result class itself? From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of "Larry Meadors" <[EMAIL PROTECTED]>Sent: Monday, February 19, 2007 5:10

Re: ResultMap and Result class

2007-02-19 Thread Larry Meadors
You'll need a discriminator. Larry On 2/19/07, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote: I have a class named Message which has a type (REQUEST, CONFIRM) based upon an enum. I want to be able to define the Message class as abstract and define RequestMessage and ConfirmMessage classes. Bas

ResultMap and Result class

2007-02-18 Thread Christopher . Mathrusse
I have a class named Message which has a type (REQUEST, CONFIRM) based upon an enum. I want to be able to define the Message class as abstract and define RequestMessage and ConfirmMessage classes. Based upon a select from the Message table and the type value contained within the type column,

ResultMap and Result class

2007-02-18 Thread Christopher . Mathrusse
I have a class named Message which has a type (REQUEST, CONFIRM) based upon an enum. I want to be able to define the Message class as abstract and define RequestMessage and ConfirmMessage classes. Based upon a select from the Message table and the type value contained within the type column,