0
我有以下的JFrame:JTable中連接到MySQL的按鈕錯誤
,我想使按鈕的工作我還在新的節目有人可以幫助我嗎?我想添加行BTN到一個新的行添加到數據庫,更新BTN讓我保存更改並刪除刪除所選行,也jTextBoxes連接到數據庫 我試着這樣做更新:
Connection conn=null;
PreparedStatement pst = null;
try{
String value1=txt_cid.getText();
String value2=txt_carid.getText();
String value3=txt_aid.getText();
String value4=txt_rd.getText();
String value5=txt_bd.getText();
String value6=txt_bn.getText();
String sql="update booking set customer_id'"+value1+"',car_id'"+value2+"',agency_id'"+value3+"',return_date'"+value4+"',booking_date'"+value5+"',booking_number'"+value6+"',";
pst=conn.prepareStatement(sql);
pst.execute();
JOptionPane.showMessageDialog(null, "table updated");
}catch(Exception e) {
JOptionPane.showMessageDialog(null,e);
}
但它沒有制定出對我來說,我得到異常錯誤
你能不能請更具體一點IM編程很新:/ –
退房的鏈接更新語法剛剛發佈 – Reimeus
仍犯規幫助:/ –