Advertisement
Guest User

Untitled

a guest
May 24th, 2017
94
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.46 KB | None | 0 0
  1. console.log(getMail());
  2.  
  3. function getMail() {
  4.  
  5. var mysql = require('mysql');
  6. var connection = mysql.createConnection({
  7. host: 'localhost',
  8. user: 'root',
  9. password: 'nimda42!',
  10. database: 'zv_node'
  11. });
  12.  
  13. connection.connect();
  14.  
  15. connection.query('SELECT code, time_update_fr FROM zv_ver', function(error, results, fields) {
  16. if (error) throw error;
  17. return results
  18. });
  19.  
  20. connection.end();
  21. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement