-1
我正在Netbeans上的項目中工作,名爲Car reservation system。我在表單代碼中遇到了一個錯誤。一旦我點擊登錄按鈕java.lang.NullExceptionPoint出現錯誤。 對我的代碼有何建議?感謝關於java.lang.NullExceptionPoint的錯誤
這裏是我的代碼:
private void cmdloginMouseClicked(java.awt.event.MouseEvent evt) {
// TODO add your handling code here:
String sql = txtusername.getText() + "'select * from tblelogin where username='" + "' and userpass='" + txtuserpass.getText() + "'";
try {
pst = conn.prepareStatement(sql);
rs = pst.executeQuery();
if (rs.next()) {
JOptionPane.showMessageDialog(null, "Correct");
} else {
JOptionPane.showMessageDialog(null, "Invalid username or password");
}
} catch (Exception e) {
JOptionPane.showMessageDialog(null, e);
}
}