Guest User

Untitled

a guest
Apr 3rd, 2018
92
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.53 KB | None | 0 0
  1. lastMsg = "Message received"; // recebe a msg
  2. var mysql = require('mysql'); //
  3.  
  4. var con = mysql.createConnection({
  5. host: "localhost",
  6. user: "yourusername",
  7. password: "yourpassword",
  8. database: "mydb"
  9. });
  10.  
  11. con.connect(function(err) {
  12. if (err) throw err;
  13. console.log("Connected!");
  14. var sql = "INSERT INTO mensagens (textomsg) VALUES (lastMsg)";
  15. con.query(sql, function (err, result) {
  16. if (err) throw err;
  17. console.log("1 record inserted");
  18. });
  19. });
Add Comment
Please, Sign In to add comment