Guest User

Untitled

a guest
Aug 20th, 2018
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.30 KB | None | 0 0
  1. function user_info (login) {
  2.  
  3. var info;
  4.  
  5. this.pool.getConnection(function(err, connection) {
  6. if (err) throw err;
  7. connection.query('SELECT * FROM user WHERE login = ?', [login], function (error, results, fields) {
  8. info = results;
  9. connection.release();
  10.  
  11. });
  12. });
  13.  
  14. return info;
  15. }
Add Comment
Please, Sign In to add comment