dkanavis

Untitled

Nov 15th, 2017
87
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. mysql.query('SELECT xyu', function(err, res) {
  2.     // Work with xyu...
  3.    
  4.    mysql.query('UPDATE xyu SET xyu WHERE xyu' , function (err, res) {
  5.         // Work with other xyu error etc
  6.    });
  7. });
  8.  
  9.  
  10. или
  11.  
  12. megaPromise = mysql.query('SELECT xyu');
  13. megaPromise.then(function(data) {
  14.     gigaPromise = mysql.query('UPDATE xyu SET xyu WHERE xyu');
  15.     gigaPromise.then(function(data) {
  16.         // Work with other xyu
  17.     }).error(//some handler);
  18. }).error(//some hanler)
Advertisement
Add Comment
Please, Sign In to add comment