Guest User

Untitled

a guest
Feb 3rd, 2016
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.41 KB | None | 0 0
  1. rs = db.querySelectAll("utilisateur","username='"+ txt_username.getText()
  2. + "' and password='"+ txt_password.getText() +"'");
  3. try {
  4. while (rs.next()){
  5. username1 = rs.getString("username");
  6. password1 = rs.getString("password");
  7. hak = rs.getString("type");
  8. }
  9. catch (SQLException ex) {
  10. Logger.getLogger(Login.class.getName()).log(Level.SEVERE,null,ex);
  11. }
Add Comment
Please, Sign In to add comment