连接字符串中碰到的SelectMethod=cursor
关键字: selectmethod=cursor的含义及其使用
今天在数据库连接字符串中看到了selectMethod=cursor
知道了这个用法如下:
作用:以利用服务器端的游标加快速度
使用情况:
1.执行多个Statements的操作的时候用
2.需要手动使用事务的时候使用
以上是在使用sqlserver数据库的连接字符串的时候使用过。
例如:jdbc:microsoft:sqlserver://localhost:1433;DatabaseName=071008_03;SelectMethod=cursor
但是今天我将其用在oracle数据库的时候,却报出了一下的错误信息:
Io 异常: Connection refused(DESCRIPTION=(TMP=)(VSNNUM=169869824)(ERR=12505)(ERROR_STACK=(ERROR=(CODE=12505)(EMFI=4))))
这是个老话题,2002年在使用ejb的bmp就遇到了这个问题
连接数据库成功之后,想在一个事务中初始化多个预处理句柄时报错
dbConn.setAutoCommit(false)
for (int i = 0; i < 5; i++) {
pstmt[i] = dbConn.prepareStatement(strPreSQL[i]);
错误提示:
java.sql.SQLException: [Microsoft][SQLServer 2000 Driver for JDBC]Can't start manual transaction mode because there are cloned connections
怀疑MS SQL不能在一个事务中建多个预处理句柄
Resolution:
You have to add a property to the pool definition, something to do with selectMode=cursor or selectMethod=cursor. Check the driver documentation. Otherwise the driver will not allow more than one statement per connection at any given time
微软的专家告诉的
This error occurs when you try to execute multiple statements against a SQL Server database with the JDBC driver while in manual transaction mode (AutoCommit=false) and while using the direct (SelectMethod=direct) mode. Direct mode is the default mode for the driver."
import java.sql.*;
import java.io.*;
public class Repro{
public static void main(String args[])
{
try {
Connection con;
Statement s1 = null;
ResultSet r1 = null;
Statement s2 = null;
ResultSet r2 = null;
Class.forName("com.microsoft.jdbc.sqlserver.SQLServerDriver");
con = DriverManager.getConnection(
"jdbc:microsoft:sqlserver://localhost:1433;DatabaseName=pubs;SelectMethod=Direct;User=User;Password=Password");
//fix 1
//"jdbc:microsoft:sqlserver://localhost:1433;DatabaseName=pubs;SelectMethod=Cursor;User=User;Password=Password");
con.setAutoCommit(false);
try {
s1 = con.createStatement();
r1 = s1.executeQuery("SELECT * FROM authors");
//fix 2
//r1.close();
//s1.close();
s2 = con.createStatement();
r2 = s2.executeQuery("SELECT * FROM publishers");
}
catch (SQLException ex)
{
System.out.println(ex);
}
}
catch (Exception e)
{
e.printStackTrace();
}
}
}
用SQL Server驱动一次select很多数据最好在connection string中加上SelectMethod=Cursor,以利用服务器端游标加快速度,其实不只sqlserver,oracle的jdbc,只要使用PreparedStatement,驱动默认就使用游标,sqlserver则不然,必须使用SelectMethod=Cursor才打开游标。
这点在使用jotm时,并且使用Xapool时,必须修改DataSourceFactory,把PreparedStatementPool禁掉,否则记录插的太快了,很可能是游标没来得及关闭
即使不使用jotm,大量向oracle插入数据,例如每毫秒1条,也会引发游标用完,所以大量插入数据时,应该使用oracle的批处理batchupdate.
可惜的是,微软的sqlserver的jdbc驱动不支持这个属性
分享到:
相关推荐
数据导入与导出工具 jdbc:microsoft:sqlserver://localhost:1433;DatabaseName=szyes;SelectMethod=Cursor; jdbc:mysql://localhost:3306/webbase?useUnicode=true&characterEncoding=UTF-8
户 口 所 在 地:<select name="province1"></select><select name="city1"></select><select name="area1"></select> 工 作 所 在 地:<select name="province2"></select><select name="city2"></select>...
### ArcObjects中Cursor的使用详解 #### 一、引言 在GIS开发领域,特别是使用ESRI提供的ArcObjects SDK时,对于数据的操作...了解并熟练掌握`Cursor`的不同类型及其使用方法,对于GIS领域的开发者来说是非常必要的。
if (select==-1||select) { select = start; fm.richTextBox1.SelectionStart = start; MessageBox.Show("找不到" + str, "记事本"); } } else { marker=select; select = fm.richTextBox1....
- `SelectMethod=Cursor`: 查询方法设置为游标方式。 ##### 4. 创建连接 ```java private static Connection con = null; Statement stmt = null; ResultSet rs = null; public connectURL() { try { if (con ...
form action="" method="post"> <div id="divselect"> 请选择特效分类 <li><a href="[removed];" selectid="1">导航菜单</a></li> <li><a href="[removed];" selectid="2">焦点幻灯片</a></li> <li><a href...
在网页开发中,`<select>`元素用于创建下拉列表,而`<option>`标签则定义了下拉列表中的选项。有时候,我们可能需要在页面加载时预设一个选项为默认选中状态,或者根据用户操作动态改变选中状态。在JavaScript中,这...
本文实例讲述了python查询sqlite数据表的方法。...cursor.execute("select * from person") rows = cursor.fetchall() for row in rows: print("%s %s %s" % (row["name"], row["age"], row["address"])) conn
n = cursor.execute("select * from user") for row in cursor.fetchall(): for r in row: print(r) # 删除数据 sql = "delete from user where name=%s" param = ("aaa") n = cursor.execute(sql, param) print...
cursor.execute("SELECT * FROM hosts") # 获取一行 row_1 = cursor.fetchone() # 获取多(3)行 row_2 = cursor.fetchmany(3) # 获取所有 row_3 = cursor.fetchall() # 重置游标类型为字典类型 cursor = conn....
method=add" method="post"> 书籍名称:<input type="text" name="bookname" /> 书籍作者:<input type="text" name="bookauthor" /> 书籍价格:<input type="text" name="bookprice" /> ...
例如,`<select id="getResultSet" resultType="YourBean">{call your_procedure(#{param1, mode=IN, jdbcType=VARCHAR}, #{resultSet, mode=OUT, jdbcType=CURSOR})}</select>`。 3. **返回多个结果的存储过程**:...
<result name="select">/org/select.jsp <action name="add_input" class="orgAction" method="add"> <result name="success" type="dispatcher">/org/add_input.jsp <action name="add" ...
- 使用`CURSOR`关键字声明游标并指定对应的`SELECT`语句。 - 例如:`CURSOR myCur IS SELECT empno, ename, sal FROM emp;` 2. **打开游标**: - 使用`OPEN`语句打开游标并执行`SELECT`语句。 - 例如:`OPEN ...
Cursor cursor = userDao_check.select(); String str = ""; if (cursor.moveToFirst()) { do { int d = cursor.getColumnIndex(MyDatabase.KEY_ID); String id = cursor.getString(d); ...
cursor_name CURSOR FOR SELECT column1, column2 FROM table_name WHERE condition; ``` - 打开:使用OPEN语句打开游标,准备开始处理结果集。 ```sql OPEN cursor_name; ``` - 提取:使用FETCH语句提取当前行的...
使用Cursor的关键在于调用`selectList`方法时传入`ExecutorType.SIMPLE`或`ExecutorType.BATCH`,并确保返回值类型是`List`的子类,比如`ArrayList`或`LinkedList`,这样MyBatis就会自动启用Cursor模式。 以下是一...
这里的`selectMethod=cursor`参数表示使用游标,这在某些情况下可能有助于处理大量数据,但请注意,游标可能会增加资源消耗,所以在性能敏感的应用中需要权衡使用。 总结来说,解决SQL Server 2005批量更新问题的...
cursor.execute('SELECT * FROM employees WHERE department_id=:dept_id AND salary>:sal', {'dept_id':50, 'sal':1000}) ``` 获取结果 可以使用 `fetchall` 方法获取所有结果,或者使用 `fetchone` 方法获取一行...
存储过程内部使用了一个嵌套查询来过滤和排序数据,并将结果集绑定到输出的Cursor。 ```sql CREATE OR REPLACE PACKAGE TEST IS -- 返回cursor TYPE CURSOR_RESULT IS REF CURSOR; PROCEDURE GET_CURSOR_RESULT...