[ 
https://issues.apache.org/jira/browse/DBUTILS-115?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=14263383#comment-14263383
 ] 

Carl Hall commented on DBUTILS-115:
-----------------------------------

[~billcomer], I just committed DBUTILS-121 which would allow you to have a 
method on your bean that accepts the column type rather than just the property 
type on the bean.  The code to do this is in a comment on the issue.

> Enhance BeanProcessor to support Joda DateTime
> ----------------------------------------------
>
>                 Key: DBUTILS-115
>                 URL: https://issues.apache.org/jira/browse/DBUTILS-115
>             Project: Commons DbUtils
>          Issue Type: Improvement
>    Affects Versions: 1.5
>            Reporter: Bill Comer
>              Labels: features
>
> We use the popular org.joda.time.DateTime to map all our Date fields in our 
> POJOs.
> Could this be added to BeanProcessor.callSetter(....)
> I have done this local change that appears to work for me.
>             if (value instanceof java.util.Date) {
>                 final String targetType = params[0].getName();
>                 if ("java.sql.Date".equals(targetType)) {
>                     value = new java.sql.Date(((java.util.Date) 
> value).getTime());
>                 } else
>                 if ("java.sql.Time".equals(targetType)) {
>                     value = new java.sql.Time(((java.util.Date) 
> value).getTime());
>                 } else
>                 if ("java.sql.Timestamp".equals(targetType)) {
>                     value = new java.sql.Timestamp(((java.util.Date) 
> value).getTime());
>                 } else
>                 if ("org.joda.time.DateTime".equals(targetType)) {
>                     if (value instanceof java.sql.Timestamp) {                
>       
>                       value = new DateTime((java.sql.Timestamp)value);
>                     }
>                 }
>             }



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

Reply via email to