[
https://issues.apache.org/jira/browse/DBUTILS-60?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12773018#action_12773018
]
Julien Aymé commented on DBUTILS-60:
------------------------------------
This method should also use a StringBuilder instead of a StringBuffer.
> Enhance message QueryRunner#rethrow for Batch
> ---------------------------------------------
>
> Key: DBUTILS-60
> URL: https://issues.apache.org/jira/browse/DBUTILS-60
> Project: Commons DbUtils
> Issue Type: Improvement
> Affects Versions: 1.2, Nightly Builds
> Reporter: Julien Aymé
> Fix For: 1.3
>
> Original Estimate: 0.17h
> Remaining Estimate: 0.17h
>
> If an error is thrown when executing a Batch (via the QueryRunner#batch
> method), the rethrow method incorrectly transform the batch parameters in to
> a String:
> instead of
> {code}msg.append(Arrays.asList(params));{code}
> the following should be used:
> {code}msg.append(Arrays.deepToString(params));{code}
> This would allow the batch parameters to be correctly displayed, instead of
> having [java.lang.objec...@8954, java.lang.objec...@78946]
--
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.