try {
con = DriverManager.getConnection(url, username, password);
String qry = "SELECT * FOME users WHERE id=?";
pst = con.prepareStatement(qry);
pst.setString(1, txtSearch.getText());
rs = pst.executeQuery();
tblEmployee.setModel(DbUtils.resultSetToTableModel(rs));
} catch (Exception e) {
e.printStackTrace(); //Show what is the catched error
}
rs = pst.executeQuery();
が動作し、次のエラーをスローしませんしています私はjavaで検索バーを作成しました。しかし、それはいくつかのエラー
com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MariaDB server version for the right syntax to use near 'FOME users WHERE id='df'' at line 1
FOME?多分あなたはFROMを意味するでしょうか? – CandiedOrange
'" SELECT * FROM users =? "' –