Guest User

Untitled

a guest
Apr 12th, 2018
97
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.42 KB | None | 0 0
  1. var mysql = require('mysql');
  2.  
  3. var con = mysql.createConnection({
  4. host: "localhost",
  5. user: "root",
  6. password: "",
  7. database: "test"
  8. });
  9.  
  10. con.connect(function(err) {
  11. if (err) throw err;
  12. //Update the address field:
  13. var sql = "UPDATE users SET name = 'lol2' WHERE name = 'lol'";
  14. con.query(sql, function (err, result) {
  15. if (err) throw err;
  16. console.log(result.affectedRows + " record(s) updated");
  17. });
  18. });
Add Comment
Please, Sign In to add comment