0

我有一个具有以下布局的数据库

databasename:macfast
table name:users

columns

  id,
  user_name,
  password,
  fullName

我想从 user_name 列中检索所有值,并用另一个字符串检查每个值,该字符串已经从 a 中检索到TEXTFIELD。但我不能(NullpointerException)。请帮我。

  public void deleteFclty() {

             PreparedStatement stmt = null;
             ResultSet rs = null;
             String username=removeText.getText();




     String qry = "SELECT user_name From users ";
    try {
        stmt = (PreparedStatement) connection.prepareStatement(qry);


     rs =  stmt.executeQuery();

     while (rs.next()) {
           String check=(rs.getString("user_name"));

           System.out.println(check);


           if(check.equals(username)){

                Util.showErrorMessageDialog("EQUAL");

           }else{

                     Util.showErrorMessageDialog("NOT EQUAL");
   }
     }
}catch (SQLException ex) {
        Logger.getLogger(RemoveFaculty.class.getName()).log(Level.SEVERE, null, ex);
    }
}
4

4 回答 4

2

问题在于准备好的语句(您没有将 id 放入语句中,它应该在那里而不是问号)。

另外我建议将条件设置为“username.equals(check)”,这样可以防止空指针异常。

于 2013-07-11T11:06:30.697 回答
1
"SELECT user_name From users where id=?"

此查询有一个参数,您没有为其设置任何值。使用PreparedStatement#setInt()或类似设置它,例如:

stmt.setInt(1, 1);
于 2013-07-11T11:15:12.237 回答
0

对于您在下面评论中的问题:

List<String> values = new ArrayList();
while (rs.next()) {
    values.add(0,rs.getString(<>))
}
// here do whatever you want to do...
// for example
for ( String value: values )
{
    // check if value == TEXTFIELD
    // if true then do something..
    // else don't do anything
}
于 2013-07-11T11:07:11.077 回答
0

问题出在 PreparedStatement 上,因为您使用的是问号?在您的查询中,您必须设置 Id 值。

 String qry = "SELECT user_name From users where id=?";
 stmt = (PreparedStatement) connection.prepareStatement(qry);
 stmt.setInt(1,1001);
 rs =  stmt.executeQuery();
于 2013-07-11T11:31:01.810 回答