可能重复:
在程序中获得意外输出
坦率地说,这个问题问起来可能很傻,但我是 Java 新手。
这是我的表emp(name,id,address,date)
。
现在我要匹配某个员工的相应密码。
String sql = "select emp_id,password from regid";
ResultSet rs = st.executeQuery(sql);
while(rs.next()){
// here will be iterate function using resultset,i guess
// what should be the best logic to check the name and password...any inputs
//in terms of code
if(if (employee.equals(rs.getString("emp_id")) && password.equals(rs.getString("password")))){
You are Mr. emp // in terms of code
}
else{
Who are You ?? //in terms of code
}
}
任何输入将不胜感激。