我在运行登录屏幕时收到此错误。我真的不知道是什么问题,因为我遵循了教程,对他来说,它工作得很好。下面是我的代码:
private void jButton1ActionPerformed(java.awt.event.ActionEvent evt) {
Connection con = null;
PreparedStatement pst = null ;
ResultSet rs = null;
try{
Class.forName("net.ucanaccess.jdbc.UcanaccessDriver");
con = DriverManager.getConnection("jdbc:ucanaccess://C:\\Users\\Morgan\\Documents\\Database1.accdb");
String sq1 = "select * from user_account where username = '"+ tfusr.getText() +"' and password = '"+ tfpwsd.getText() +"' ";
pst = con.prepareStatement(sq1);
rs = pst.executeQuery();
if(rs.next())
{
JOptionPane.showMessageDialog(null,"Login successfull");
}
else {
JOptionPane.showMessageDialog(null , "Login Failed");
}
}
catch(Exception e){
System.out.println(e);
}
以下是我的依赖:
1条答案
按热度按时间lp0sw83n1#
这可能是由于 password 是一个保留字。
所以,试试: