Guest User

Untitled

a guest
Feb 15th, 2018
94
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.25 KB | None | 0 0
  1. public void convertPasswordToText() {
  2.  
  3. MySqlCommand cmd = new MySqlCommand("SELECT * FROM users WHERE username='" +
  4. this.usernameLoginTextbox + "' password='" + this.passwordLoginTextbox + '"
  5. " ,conn);
  6. cmd.ExecuteNonQuery();
  7.  
  8. //SHA1 to Text
  9.  
  10. ???
  11.  
  12.  
  13. }
Add Comment
Please, Sign In to add comment