Re: how to map unsigned bigint in MySql to long value

2005-11-01 Thread Siming Weng
A defected connector/j 3.1.4 beta is used when the project is initially created. It failed to map unsigned bigint to java.math.BigInteger. Thanks a lot for your assistance. On 10/28/05, Jeff Butler [EMAIL PROTECTED] wrote: I've tried your exact example (as close as I can replicate), and don't

Re: how to map unsigned bigint in MySql to long value

2005-10-27 Thread Jeff Butler
I've tried your exact example (as close as I can replicate), and don't have any errors - and the values comes back as expected. MySql returns a Long for signed bigint fields, and a BigInteger for unsigned bigint fields. If your database field is unsigned, then you must set the type in your POJO

Re: how to map unsigned bigint in MySql to long value

2005-10-26 Thread Siming Weng
I'll have a go later. Thank you for the quick response. On 10/26/05, Jeff Butler [EMAIL PROTECTED] wrote: iBATIS does not have a type handler for BigInteger - because there is no getBigInteger() method on a result set. iBATIS will call getObject() if it doesn't know what the data type is