Advertisement
Guest User

Untitled

a guest
Oct 25th, 2014
133
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.53 KB | None | 0 0
  1. PreparedStatement pst=con.prepareStatement("select * from Member_Registration where UserName1=? and Password1=?");
  2. pst.setString(1,id1);
  3. pst.setString(2,nm);
  4. ResultSet rs=pst.executeQuery();
  5. if(rs.next()){
  6. con.close();
  7. }
  8. else{
  9. JOptionPane.showMessageDialog(null,"Not registered user ! please try again later !!");
  10. }
  11. }
  12. }
  13. catch(Exception ee){
  14. JOptionPane.showMessageDialog(null, ee);
  15. }
  16.  
  17. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement