在一個擺動按鈕中我設置了一個動作,它執行刪除查詢並執行另一個類。 這裏是我的代碼:無法執行java中的「刪除」查詢
JButton btnScanMyPc = new JButton("SCAN MY PC");
btnScanMyPc.addActionListener(new ActionListener() {
public void actionPerformed(ActionEvent arg0) {
try{
String q="DELETE FROM `search` WHERE 1=1 ";
PreparedStatement st=connection.prepareStatement(q);
ResultSet rs=st.executeQuery();
ReadDir rd = new ReadDir();
ReadDir.main(null);
}
catch(Exception e)
{JOptionPane.showMessageDialog(null, e);}
}
當我執行數據庫這個查詢它完美的作品。但在Java它顯示了一些錯誤,如:
java.sql.SQLException: Can not issue data manipulation Statement with executeQuery().
該錯誤信息不能更清楚,對不對? – Kon
是的這個錯誤信息不清楚。 –
kon說這個錯誤信息是**清除 –