我想删除 id = 用户在 Java 中将文本插入 jTextField 的 MySQL 行。我知道我需要使用类似txtGebruikersID.getText();
但不确定如何正确组合它们的东西,以便当有人在 JTextField (txtGebruikersID) 中插入 25 时,25 的值会转到 25 所在的位置:
query = "delete from gebruiker where gebruiker_ID = 25";
我在 QueryManager.java 中使用的代码:
public void removeGebruiker() {
String query;
query = "delete from gebruiker where gebruiker_ID = 25";
dbmanager.insertQuery(query);
}
JTextField 被称为txtGebruikersID
我在 userPanel.java 中使用的代码:
private void removeUserActionPerformed(java.awt.event.ActionEvent evt) {
WinkelApplication.getInstance().getQueryManager().removeGebruiker();
JOptionPane.showMessageDialog(null, "Gebruiker is verwijderd", "Gebruiker", JOptionPane.INFORMATION_MESSAGE);
}