1. 程式人生 > >JDBC高階特性(二)事務、併發控制和行集

JDBC高階特性(二)事務、併發控制和行集

3、//新增資料
crs.setTableName(“student”);     //新增資料必須指定
crs.moveToInsertRow();                   //標識指標的位置
crs.updateInt(“id”,33);            //新增資料時主鍵必須指定
crs.updateString(“name", "Shakespeare");
crs.updateShort(“age", 58);
crs.insertRow();                                 //更新行集
crs.moveToCurrentRow();            //讓指標回到標識的位置
crs.acceptChanges(conn);                 //更新資料庫

//刪除資料
crs.first();
crs.deleteRow();                               //刪除行集資料
crs.acceptChanges(conn);              //更新資料庫