重複の可能性:
プログラムで予期しない出力が発生する
率直に言って、この質問はばかげているかもしれませんが、私は 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
}
}
どんな入力も高く評価されます。