分类: 数据库开发技术
2008-07-03 12:34:23
SelectMethod=cursor 作用:
在url = "jdbc:microsoft:sqlserver://localhost;DatabaseName=epet"上增加一个SelectMethod=cursor.它的作用是在一个事务中初始化多个预处理句柄.比如:
dbConn.setAutoCommit(false)
for (int i = 0; i < 5; i++) {
pstmt[i] = dbConn.prepareStatement(strPreSQL[i]);
用SQL Server驱动一次select很多数据最好在connection string中加上SelectMethod=Cursor,以利用服务器端游标加快速度,其实不只sqlserver,oracle的jdbc,只要使用PreparedStatement,驱动默认就使用游标,sqlserver则不然,必须使用SelectMethod=Cursor才打开游标。