我收到一個語法錯誤,但我確信我正在做的一切都是正確的。你可以看一下嗎?在JDBC中的SQL查詢中獲取語法錯誤
String ORDER, DROP, CAR;
String Statement = "INSERT INTO WORKORDER"
+ "(ORDER, DROPOFFDATE, COMPLETIONDATE) VALUES "
+ "(?, ?, null);";
//JOptionPane.showMessageDialog(frame, Statement, "Daisy Imports", 3);
try {
PreparedStatement PST = connection.prepareStatement(Statement);
ORDER = JOptionPane.showInputDialog("Please assign a order number for this order");
int ORDERi = Integer.parseInt(ORDER);
DROP = JOptionPane.showInputDialog("Please Enter the date the car was dropped off (YYYY-MM-DD)");
CAR = JOptionPane.showInputDialog("Enter the VIN for the car this work order is for");
PST.setInt(1, ORDERi);
PST.setString(2, DROP);
PST.execute();
我會考慮將'(?,?,null)'改爲'(?,?,?)',並使用'PST.setObject(3,null)'而不是 – MadProgrammer
我剛剛給出了一個鏡頭,同樣的錯誤。 – MingZhou
請在您的問題中包含確切的錯誤。這個問題雖然是'訂單',但它需要引用,因爲它是一個保留字。在大多數數據庫系統中使用雙引號,在MySQL中使用雙引號;所以'「ORDER」'或'\'ORDER \'' –