我想通過使用jtable數據更新MySql。我有6列(週期,星期一,星期二,星期四,星期五,星期五)在MySQL中。在jtable中我有和mysql一樣的表。在MySQL中,我已經給出了期間值(1,2,3,4)。更新Jtable值到MySql表
Connection con = Driver.connect();
for (int i = 0; i < 4; i++) {
for(int j=1;j<=4;j++){
Handler.setData(con, "update sem1 set mon='"+jTable1.getValueAt(i, 1)+"' where
periods='"+j+"'");
Handler.setData(con, "update sem1 set tue='"+jTable1.getValueAt(i, 2)+"' where
periods='"+j+"'");
Handler.setData(con, "update sem1 set wed='"+jTable1.getValueAt(i, 3)+"' where
periods='"+j+"'");
Handler.setData(con, "update sem1 set thu='"+jTable1.getValueAt(i, 4)+"' where
periods='"+j+"'");
Handler.setData(con, "update sem1 set Fri='"+jTable1.getValueAt(i, 5)+"' where
periods='"+j+"'");
}
}
我想讓我的jTable和MySql數據一致。 – ramindusn 2013-03-24 14:19:42