程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 更多編程語言 >> 編程綜合問答 >> jdbc-ResultSet循環遍歷時,對數據進行修改,但是報錯ResultSet is read only

jdbc-ResultSet循環遍歷時,對數據進行修改,但是報錯ResultSet is read only

編輯:編程綜合問答
ResultSet循環遍歷時,對數據進行修改,但是報錯ResultSet is read only

Statement ps_page = l_conn.createStatement(ResultSet.TYPE_SCROLL_INSENSITIVE, ResultSet.CONCUR_UPDATABLE );
ResultSet rs_page = ps_page.executeQuery(qii.l_sql_page);
while(rs_page.next()){
String value = rs_page.getString(column);
String str_de = PubFunction.dePass(value);
rs_page.updateString(column, str_de);

                }
報錯
java.sql.SQLException: ResultSet is read only.
但是我改成,TYPE_SCROLL_SENSITIVE也報同樣的錯誤

最佳回答:


http://blog.csdn.net/xiuluomenshen1986/article/details/2387220

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved