当前位置: 技术问答>java相关
问一个数据库事务的问题
来源: 互联网 发布时间:2017-04-24
本文导语: 在用 connection.setAutoCommit(false); 开始事务时,得到异常 java.sql.SQLException: [Microsoft][SQLServer 2000 Driver for JDBC]Can't start manual transaction mode because there are cloned connections. 这个connection是=过来的 就没有办法进行事务处...
在用
connection.setAutoCommit(false);
开始事务时,得到异常
java.sql.SQLException: [Microsoft][SQLServer 2000 Driver for JDBC]Can't start manual transaction mode because there are cloned connections.
这个connection是=过来的
就没有办法进行事务处理了吗
connection.setAutoCommit(false);
开始事务时,得到异常
java.sql.SQLException: [Microsoft][SQLServer 2000 Driver for JDBC]Can't start manual transaction mode because there are cloned connections.
这个connection是=过来的
就没有办法进行事务处理了吗
|
这个问题我也遇见过,当你用connection.setAutoCommit(false)开始事务的时候,此Connection的reference必须是被你独占的,也就是说,只能有一个reference,不能被共享.因此,解决方式是用
connection = ds.getConnection()重开一个连结.
connection = ds.getConnection()重开一个连结.
本站(WWW.)旨在分享和传播互联网科技相关的资讯和技术,将尽最大努力为读者提供更好的信息聚合和浏览方式。
本站(WWW.)站内文章除注明原创外,均为转载、整理或搜集自网络。欢迎任何形式的转载,转载请注明出处。
本站(WWW.)站内文章除注明原创外,均为转载、整理或搜集自网络。欢迎任何形式的转载,转载请注明出处。