我想通过使用 jtable 数据来更新 MySql。我在 mysql 中有 6 列(期间、周一、周二、周三、周四、周五)。在 jtable 中,我有与 mysql 中相同的表。在 mysql 中,我已经给出了句点值(1、2、3、4)。
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+"'" );
}
}