You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@groovy.apache.org by "ASF GitHub Bot (JIRA)" <ji...@apache.org> on 2016/03/11 03:53:40 UTC

[jira] [Commented] (GROOVY-7751) CallableStatement leak in Sql.call() method

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

ASF GitHub Bot commented on GROOVY-7751:
----------------------------------------

Github user asfgit closed the pull request at:

    https://github.com/apache/groovy/pull/263


> CallableStatement leak in Sql.call() method
> -------------------------------------------
>
>                 Key: GROOVY-7751
>                 URL: https://issues.apache.org/jira/browse/GROOVY-7751
>             Project: Groovy
>          Issue Type: Bug
>          Components: SQL processing
>    Affects Versions: 2.4.5
>            Reporter: Alexey Vladykin
>
> All {{Sql.call(...)}} methods ultimately delegate to {{Sql.callWithRows(...)}} method where we have:
> {code:java}
> try {
>     statement = connection.prepareCall(sql);
>     // ...
> } finally {
>     // ...
>     closeResources(connection, statement);
> }
> {code}
> The problem is that statement is unconditionally parsed and compiled each time, but the {{closeResources()}} method only closes it when statement caching is disabled. So with statement caching enabled we end up allocating and leaking a new CallableStatement instance per {{Sql.call()}} invocation.



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