打印本文 打印本文 关闭窗口 关闭窗口
A problem when connect MSSQL with transaction.
作者:武汉SEO闵涛  文章来源:敏韬网  点击数1304  更新时间:2007/11/14 13:00:26  文章录入:mintao  责任编辑:mintao

Problem: Could not load object: [Microsoft][SQLServer 2000 Driver for JDBC]Can''''t start a cloned connection while in manual transaction mode.
===============================================

Solve:

If you pass "SelectMethod=cursor" attribute in connectio url, will allow more than one active statement per connection." jdbc:microsoft:sqlserver://localhost:1433;SelectMethod=cursor;","user","pwd"The reason for this is;When SelectMethod is set to direct, SQL Server does not support multiple active statements on a single connection within a transaction; however, when auto-commit mode is enabled (the default), the Microsoft SQL Server JDBC driver provides the ability to have multiple JDBC statements open on a single JDBC connection. This is done by cloning physical SQL Server connections as needed. To avoid cloning physical SQL Server connections in this circumstance, you should create only one Statement, PreparedStatement, CallableStatement, or DatabaseMetaData object per JDBC Connection object. Be sure to invoke the "close" methods on these objects when you are finished with them, that is, before creating another object of the types described.

打印本文 打印本文 关闭窗口 关闭窗口