Guest User

Untitled

a guest
Feb 15th, 2018
121
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.27 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 + '"" ,conn);
  5. cmd.ExecuteNonQuery();
  6.  
  7. //SHA1 to Text
  8.  
  9. ???
  10. }
Add Comment
Please, Sign In to add comment