演示更新结果集 : 可更新结果 « 数据库JDBC « Java

En
Java
1. 图形用户界面
2. 三维图形动画
3. 高级图形
4. 蚂蚁编译
5. Apache类库
6. 统计图
7. 
8. 集合数据结构
9. 数据类型
10. 数据库JDBC
11. 设计模式
12. 开发相关类
13. EJB3
14. 电子邮件
15. 事件
16. 文件输入输出
17. 游戏
18. 泛型
19. GWT
20. Hibernate
21. 本地化
22. J2EE平台
23. 基于J2ME
24. JDK-6
25. JNDI的LDAP
26. JPA
27. JSP技术
28. JSTL
29. 语言基础知识
30. 网络协议
31. PDF格式RTF格式
32. 映射
33. 常规表达式
34. 脚本
35. 安全
36. Servlets
37. Spring
38. Swing组件
39. 图形用户界面
40. SWT-JFace-Eclipse
41. 线程
42. 应用程序
43. Velocity
44. Web服务SOA
45. 可扩展标记语言
Java 教程
Java » 数据库JDBC » 可更新结果屏幕截图 
演示更新结果集
 
import java.sql.Connection;
import java.sql.DriverManager;
import java.sql.PreparedStatement;
import java.sql.ResultSet;
import java.sql.SQLException;

public class DemoUpdatableResultSet {
  public static Connection getConnection() throws Exception {
    String driver = "oracle.jdbc.driver.OracleDriver";
    String url = "jdbc:oracle:thin:@localhost:1521:databaseName";
    String username = "name";
    String password = "password";
    Class.forName(driver);
    Connection conn = DriverManager.getConnection(url, username, password);
    return conn;
  }

  public static void main(String[] args) {
    ResultSet rs = null;
    Connection conn = null;
    PreparedStatement pstmt = null;
    try {
      conn = getConnection();
      String query = "select id, name, age from employees where age > ?";
      pstmt = conn.prepareStatement(query, ResultSet.TYPE_SCROLL_SENSITIVE,
          ResultSet.CONCUR_UPDATABLE);
      pstmt.setInt(120)// set input values
      rs = pstmt.executeQuery()// create an updatable ResultSet
                                               // update a column value in the current row.
      rs.absolute(2);                          // moves the cursor to the 2nd row of rs
      rs.updateString("name""newName");      // updates the 'name' column of row 2 to newName
      rs.updateRow();                          // updates the row in the data source
                                               // insert column values into the insert row.
      rs.moveToInsertRow();                    // moves cursor to the insert row
      rs.updateInt(11234);                   // 1st column id=1234
      rs.updateString(2"newName");           // updates the 2nd column
      rs.updateInt(399);                     // updates the 3rd column to 99
      rs.insertRow();
      rs.moveToCurrentRow();
    catch (Exception e) {
      e.printStackTrace();
    finally {
      try {
        rs.close();
        pstmt.close();
        conn.close();
      catch (SQLException e) {
        e.printStackTrace();
      }
    }
  }
}

           
         
  
Related examples in the same category
1. 数据库是否支持可更新的结果集
2. 使用UpdatableResultSet插入新行
3. 为MySQL从更新的结果集删除行
4. 从MySQL为更新的结果插入行
5. 更新结果集中数据
6. 使用Oracle驱动程序更新结果集
7. Determining If a Database Supports Updatable Result Sets: An updatable result set allows modification to data in a table through the result set.
8. 创建一个可更新的结果集
9. 确定结果集是否得到更新
10. 使用可更新的结果集更新数据库中表格行数
11. 取消可更新结果集中的更新
12. 使用可更新结果集插入数据库表行
13. 使用可更新结果集删除数据库表行
14. 刷新可更新结果集中的行
www.java2java.com | Contact Us
Copyright 2010 - 2030 Java Source and Support. All rights reserved.
All other trademarks are property of their respective owners.