[hibernate-issues] [Hibernate-JIRA] Updated: (HHH-3271) Prepare Statement Caching

Swagat Kumar Sahoo (JIRA) noreply at atlassian.com
Tue Dec 8 08:20:15 EST 2009


     [ http://opensource.atlassian.com/projects/hibernate/browse/HHH-3271?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Swagat Kumar Sahoo updated HHH-3271:
------------------------------------

    Attachment: PreparedStatementTest.java

This is an example of usage of the prepared statement. This test case may not work properly but gives an idea of how we use it. That means after commit, the PS is unusable. We have to manually reopen it. So, pls provide a way to reuse the same PS.

> Prepare Statement Caching
> -------------------------
>
>                 Key: HHH-3271
>                 URL: http://opensource.atlassian.com/projects/hibernate/browse/HHH-3271
>             Project: Hibernate Core
>          Issue Type: Bug
>          Components: core
>    Affects Versions: 3.2.5
>         Environment: Hibernate 3.2.5, Oracle 10g
>            Reporter: lalit railwani
>         Attachments: PreparedStatementTest.java
>
>
> We are using Hibernate 3.2.5 are trying to evaluate hibernate batching vis a vis JDBC batching.
> As per our results the hibernate batching takes approx 2 times the time taken by JDBC batching.
> The problem is we need to commit the batches also so in a loop we are commiting the transaction also (batching). 
> But for every new loop hibernate creates new prepared statements i.e. if we have 20 batches 20 prepared statements per table/entity are being created but in case of JDBC the same can be done using 1 prepared statement per table/entity.
> Hibernate does reuse the prepared statements within a batch but not across batches. If hibernate can reuse these statements it would significantly reduce the timings and would bring the hibernate batching close to jdbc batching.
> This is happening even after enabling prepare statement caching in the hibernate cfg xml.

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: http://opensource.atlassian.com/projects/hibernate/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira

        


More information about the hibernate-issues mailing list