DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG 
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://nagoya.apache.org/bugzilla/show_bug.cgi?id=24997>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND 
INSERTED IN THE BUG DATABASE.

http://nagoya.apache.org/bugzilla/show_bug.cgi?id=24997

[dbutils] Implement Pluggable Adaptors to Make BeanHandler Smarter





------- Additional Comments From [EMAIL PROTECTED]  2003-12-11 14:40 -------
I have downloaded commons-dbutils-src-20031210 and i have got problems with it. 
I think there is a litle problem with BasicRowProcessor class. It doesn't 
populate properties beans when then column database type is BigDecimal. To 
solve this problem I have made this change ( line 141 ) :

        public Object process(ResultSet rs, int index, Class propType)
            throws SQLException {
            return rs.getObject(index);
        }

I have change the line : return rs.getObject(index);
for this line : return p.process( rs, index, propType );


With this change it works fine for me.
Is this change correct ??

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to