我想使用jDateChooser将日期添加到数据库中,但似乎出错。
我已经尝试过youtube上的代码,但这仍然是错误的。
String date = ((JTextField)dateChooser.getDateEditor().getUiComponent()).getText();
try{
String s = "INSERT INTO barang VALUES ('"+kode+"','"+nama+"',"+harga+","+stok+","+date+")";
db.query(s);
} catch (Exception e) {
JOptionPane.showMessageDialog(null, "Error");
}
我尝试了该代码,但显示了消息:
“错误数据截断.....”