可更新resultset,效率低
- //标准获取Statement 方法
- Statement stmt = (Statement) conn.createStatement();
- //获取可更新ResultSet
- Statement stmt = (Statement) conn.createStatement(ResultSet.TYPE_SCROLL_INSENSITIVE,ResultSet.CONCUR_UPDATABLE);
- long s = System.currentTimeMillis();
- while(rs.next()){
- //调用其他的update方法
- // updateDate(conn,rs.getString(“id”));
- rs.updateString(“age”, rs.getString(“id”));
- rs.updateRow(); // updates the row in the data source
- System.out.println(rs.getString(“id”));
- }
- long e = System.currentTimeMillis();
转载于:https://blog.51cto.com/gjbxx110/623442
发布者:全栈程序员-用户IM,转载请注明出处:https://javaforall.cn/110585.html原文链接:https://javaforall.cn
【正版授权,激活自己账号】: Jetbrains全家桶Ide使用,1年售后保障,每天仅需1毛
【官方授权 正版激活】: 官方授权 正版激活 支持Jetbrains家族下所有IDE 使用个人JB账号...