所以我想要做的是SQL - 爪哇 - UPDATE語句查詢
JButton GrantButton = new JButton("Grant Seller Access");
GrantButton.addActionListener(new ActionListener() {
public void actionPerformed(ActionEvent arg0) {
try {
String update_query = "UPDATE user SET usertype = 'seller' WHERE email = " & GrantField.getText()";"
//Here is where the error is stated on eclipse
PreparedStatement pSt = connect.prepareStatement(update_query);
pSt.setString(1, GrantField.getText());
pSt.execute();
JOptionPane.showMessageDialog(null, "The Request has been approved");
} catch (Exception e) {
e.printStackTrace();
}
}
});
「中的‘用戶’表
WHERE
電子郵件更新‘用戶類型’列從文本獲得(/用戶)值」
可以做到這一點嗎?
任何幫助將不勝感激。
什麼錯誤得到?哪些dbms使用? SQL服務器? – Sachu
'「&GrantField.getText()」;「'是無效的Java代碼。**和**你需要告訴我們什麼**完全**錯誤信息。你需要告訴我們你正在使用哪個DBMS –