From: | Emi Lu <emilu(at)encs(dot)concordia(dot)ca> |
---|---|
To: | pgsql-jdbc(at)postgresql(dot)org |
Subject: | "postgresql-9.0-801.jdbc4.jar" Causing "Error committing transaction. Cause: org.postgresql.util.PSQLException: Cannot commit when autoCommit is enabled." Exception |
Date: | 2011-05-31 18:11:52 |
Message-ID: | 4DE52F68.9060909@encs.concordia.ca |
Views: | Raw Message | Whole Thread | Download mbox | Resend email |
Thread: | |
Lists: | pgsql-jdbc |
Hello list,
JDBC8 returns autocommit = false; which is what I want.
But when I upgrade to JDBC9, I got:
===================================================
### Error committing transaction. Cause:
org.postgresql.util.PSQLException: Cannot commit when autoCommit is enabled.
Is there anything need to be configured if using
"postgresql-9.0-801.jdbc4.jar" to set autocommit = false always?
I use springframework3.0.5 + mybatis3 to setup DB connections:
applicationContext-mybatis.xml
<bean id="dataSource"
class="org.springframework.jdbc.datasource.DriverManagerDataSource">
<property name="driverClassName" value="${driverClassName}" />
<property name="url" value="${url}" />
<property name="username" value="${username}" />
<property name="password" value="${password}" />
</bean>
This codes return autocommit= false for JDBC8; while JDBC9 returns
autocommit=true as default.
Thanks a lot!
Emi
---
. Postgresql8.3
. mybatis-3.0.5-SNAPSHOT.jar
. mybatis-spring-1.0.1-SNAPSHOT.jar
. spring3.0.5
. postgresql-9.0-801.jdbc4.jar
SqlSession sql_session = sqlSessionFactory.openSession(false);
....
sql_session.commit();
From | Date | Subject | |
---|---|---|---|
Next Message | Simon Mitchell | 2011-05-31 21:54:42 | Re: PreparedStatement error for date parameter with overlaps |
Previous Message | Emi Lu | 2011-05-31 17:07:19 | "postgresql-9.0-801.jdbc4.jar" Causing "Error committing transaction. Cause: org.postgresql.util.PSQLException: Cannot commit when autoCommit is enabled." Exception |