JavaでログインUIを構築しようとしています。しかし、SQL 認証に問題があります
コードは次のとおりです。
public void actionPerformed(ActionEvent e){
if (e.getSource() == Login)
try {
Class.forName("sun.jdbc.odbc.JdbcOdbcDriver");
Connection con=DriverManager.getConnection("jdbc:odbc:MessageStore","sa","12345");
Statement cmd=con.createStatement();
ResultSet rs=cmd.executeQuery("select * from UserList where UserName='"+nameText.getText());
}
しかし、「rs」には警告があります: The value of the local variable rs is not used
この問題を解決するには?
または、SQL 認証を実装するためのより簡単なコードはありますか?
ありがとうございました