我在尝试运行此代码时遇到此错误您的 SQL 语法有错误;检查与您的 MySQL 服务器版本相对应的手册,以在第 1 行的 ''And StatusMembership=Active' 附近使用正确的语法
public boolean checkLenderToIfExists(BorrowedBook borrowedBook) throws SQLException {
try {
Statement stmt = con.createStatement();
ResultSet rs = stmt.executeQuery("SELECT * FROM library_students.student WHERE StudentID='"+ borrowedBook.getLenderTo()+"'And Permission=1"+"'And StatusMembership='Active'");
if (!(rs.next())) {
return false;
}
rs.close();
return true;
} catch (SQLException ex) {
ex.printStackTrace();
return false;
}
互换的青春
人到中年有点甜
相关分类