http://tb.blog.csdn.net/TrackBack.aspx?PostId=1342982
欲流远之,必固其源泉,虽然现在有了Hibernate等工具,或许我们没太多必要关注JDBC的底层操作,但是工具会不断更新或者过时或者被淘汰,所以Java基础还是最重要的,有了深厚的JDBC功底,相信再学其它ORM都轻车熟路,不费吹灰之力。
I get java.sql.SQLException: "ResultSet may only be accessed in a forward direction" or "ResultSet is read only" when using a scrollable/updateable ResultSet.
There are three possible causes to this (if we exclude not creating the ResultSet with the appropriate type and concurrency in the first place):
The executed query must be a single SELECT statement or a call to a procedure that consists of a single SELECT statement (even a SET or PRINT will cause the resulting ResultSet to be forward only read only). This is a SQL Server limitation and there's not much jTDS can do about it.
The scroll insensitive/updateable combination is not supported by SQL Server, so such a ResultSet is automatically downgraded to scroll insensitive/read-only by the server. Use the scroll sensitive/updateable combination and it should work.
The other possible cause is that the cursor is keyset-based and either the table you are selecting from does not have a unique primary key or that primary key is not included in your SELECT. See the SQL Server Documentation on cursor types for more information.
In both cases if you call Statement.getWarnings() right after calling executeQuery() you'll get a warning about the ResultSet being downgraded. Also, please take a look at our ResultSet support page for some additional information and tips.
JDK5支持用rs.updateRow()直接更新当前行,而我们习惯的用法是
PreparedStatement pstmt=conn.prepareStatement(sql,ResultSet.TYPE_SCROLL_INSENSITIVE,ResultSet.CONCUR_UPDATABLE);
pstmt.set.....
ResultSet rs=pstmt.executeQuery();
//更新操作
if(rs.next()){
rs.updateString("fieldName","value");
...
rs.updateRow()
}
当然,这在Microsoft的JDBC驱动里面是没有问题的,可是当你用jtds的时候,这种情况就发生变化了,且让我们来参考一下jTDS官方网上的介绍——jTDS supports the following result set types on MS SQL Server(http://jtds.sourceforge.net/resultSets.html).
JDBC Type
SQL Server Cursor Type
Server Load
Description
TYPE_FORWARD_ONLY
Firehose cursor (direct select) when read-only
Light
Fast, but driver will have to read all data. Not recommended when using multiple result sets. Forward only.
Fast forward-only (static) cursor when read-only and useCursors=true
Heavy
Slower than firehose cursors (multiple fetch requests), driver doesn't have to read all data. Forward only.
Forward-only dynamic cursor when updatable
Heavy
Others' updates, deletes and inserts visible. Forward only.
TYPE_SCROLL_INSENSITIVE
Static cursor
Heavy
Only works with read-only concurrency (updatable is downgraded). SQL Server generates a temporary table, so changes made by others are not visible. Scrollable.
TYPE_SCROLL_SENSITIVE
Keyset cursor
Medium
Others' updates or deletes visible, but not others' inserts. Scrollable.
TYPE_SCROLL_SENSITIVE+1
Dynamic cursor
Heavy
Others' updates, deletes and inserts visible. Scrollable.
jTDS supports the following result set concurrencies on MS SQL Server.
JDBC Concurrency
SQL Server Concurrency
Row Locks
Description
CONCUR_READ_ONLY
Read only
No
Read-only.
CONCUR_UPDATABLE
Optimistic concurrency, updatable
No
Row integrity checked using timestamp comparison or, when not available, value comparison (except text and image fields).
CONCUR_UPDATABLE+1
Pessimistic concurrency, updatable
Yes
Row integrity is ensured by locking rows.
CONCUR_UPDATABLE+2
Optimistic concurrency, updatable
No
Row integrity checked using value comparison (except text and image fields).
在这里,我们可以发现一点小小的变化,那就是jTDS的TYPE_SCROLL_INSENSITIVE只支持只读操作(Only works with read-only concurrency (updatable is downgraded)),TYPE_SCROLL_SENSITIVE支持Update操作,但不支持另外的Insert(说明:此Insert指的是新增一条空记录,并在当前记录中填值的情况),而TYPE_SCROLL_SENSITIVE+1就跟MS SQL Server JDBC驱动中的TYPE_SCROLL_INSENSITIVE功能类似了。
基于此,所以我们要将原来的语句:
pstmt=conn.prepareStatement(sql,ResultSet.TYPE_SCROLL_INSENSITIVE,ResultSet.CONCUR_UPDATABLE);
改成如下形式:
pstmt=conn.prepareStatement(sql,ResultSet.TYPE_SCROLL_SENSITIVE,ResultSet.CONCUR_UPDATABLE);
这样,你就可以应用查询,并在结果集rs的当前行直接进行更新操作了,关于ResultSet的更新用法请参照JDK文档。
分享到:
相关推荐
Java连接池,也称为JDBC连接池,是Java应用程序中管理数据库连接的一种高效方式。它通过预先创建并维护一定数量的数据库连接,避免了每次应用需要连接数据库时的开销,提高了系统的性能和响应速度。在Java中,有许多...
这篇博客文章“JTDS连接SQLSERVER、Sybase数据库”可能详细介绍了如何使用JTDS驱动程序进行数据库连接,下面将对相关知识点进行深入探讨。 1. JDBC(Java Database Connectivity)是Java平台中的一个标准API,用于...
标题中的“JTDS和JDBC连接Sybase数据库”涉及到的是Java开发中的一种数据库连接技术,主要聚焦于如何通过Java应用程序与Sybase数据库进行交互。Sybase是一种流行的关系型数据库管理系统,广泛应用于企业级应用中。...
JDBC(Java Database Connectivity)是Java平台中用于访问数据库的标准API,而`jtds.jar`则是一个开放源码的JDBC驱动,它允许Java程序通过标准接口连接到Microsoft SQL Server和Sybase数据库。 标题中的“数据库...
Java连接池JTDs技术是Java开发者在处理数据库连接时常用的一种高效管理工具,它主要用于优化数据库连接的创建和释放,提高系统性能。JTDs(Java-Type4 Driver for SQL Server and Sybase)是一个开源的数据库驱动,...
Java JTDs 连接数据库是一种使用Java编程语言与多种数据库进行交互的方式,特别是针对Microsoft SQL Server和Sybase Adaptive Server。JTDs(Java Thin Database Driver)是一个开源的 JDBC 驱动程序,它提供了轻量...
下载解压后找到jtds-1.2.2.jar,放到 JSP项目 WEB-INF/lib目录下 加载驱动: Class.forName("net.sourceforge.jtds.jdbc.Driver").newInstance(); String sConn="jdbc:jtds:sqlserver://localhost:1433/ch03"; ...
这个压缩包“JTDS连接数据库分享.rar”包含了几个关键组件,可以帮助用户理解如何使用JTDS进行数据库连接。 首先,我们来看看“JTDS连接数据库.docx”。这很可能是一个文档,详细介绍了JTDS驱动的工作原理,以及...
**JTDs 连接数据库详解** JTDs(Java Thin JDBC Driver for SQL Server and Sybase)是一款轻量级的开源JDBC驱动程序,专为Microsoft SQL Server和Sybase数据库设计。它允许Java应用程序通过标准的JDBC接口与这些...
标题中的“jtds-1.3.1.jar包,kettle连接”指的是在Kettle数据集成工具中,为了能够连接到SQL Server数据库,需要使用名为jtds的Java数据库连接器(JDBC驱动),其具体版本为1.3.1。jtds是一个开源的JDBC驱动程序,...
本文将详细探讨标题中提到的四个数据库系统——jtds、MySQL、Oracle和SQL Server的驱动程序及其连接字符串。 首先,jtds是一个开源的Java数据库连接器,主要支持Microsoft SQL Server和Sybase数据库。它的优点在于...
在IT行业中,数据库连接是应用程序开发的基础,而Jtds.jar正是一个轻量级的Java驱动程序,专门用于连接Microsoft SQL Server和Sybase ASE数据库。本文将深入探讨如何使用Jtds.jar进行数据库连接,以及它的一些核心...
jdbc-sql2005连接数据库包 jtds.jar,可以连接各种数据库
jtds.jar : net.sourceforge.jtds.jdbc.Driver
JTDS(JTDS is not TDS)是一种开放源代码的JDBC驱动程序,用于连接Microsoft SQL Server和Sybase数据库。它提供了一种轻量级的解决方案,尤其适用于那些需要跨平台兼容性的应用程序。 连接URL格式为: ``` jdbc:...
首先,标题"Kettle连接SQLServer连不上-jtds.jar包"表明了问题的核心:Kettle无法成功连接到SQL Server数据库。这通常是因为缺少适当的驱动程序,即Java数据库连接(JDBC)驱动。在Kettle中,JDBC驱动是用于与各种...
开发环境:win10,数据库SQL Server 2008 R2 EXPRESS 混合认证模式,android studio2.12,jdk1.8,android sdk 23.3,jtds 1.3.0,真机三星S4系统android 5.01wifi环境
本篇将详细解释如何在WebSphere 6.0版本中使用自定义的JDBC驱动程序,即jTDS驱动,来连接到数据库。 首先,我们要了解jTDS驱动。jTDS是一款开源的Java数据库连接器(JDBC),它专门用于连接Microsoft SQL Server和...
使用JTDs连接SQL Server数据库的基本步骤如下: 1. 添加JTDs JAR到类路径。 2. 导入必要的JDBC类: ```java import net.sourceforge.jtds.jdbc.Driver; ``` 3. 注册JDBC驱动: ```java Class.forName(...
标题中提到的"jtds.jar"是一个开源的Java数据库连接器(JDBC)驱动,它实现了对SQL Server和Sybase数据库的访问。jtds.jar 1.3.1版本是一个较旧但稳定的版本,适用于不少环境。在Kettle中,这个驱动用于建立与SQL ...