Guest User

Untitled

a guest
Nov 8th, 2018
144
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.23 KB | None | 0 0
  1. var mysql = require('mysql');
  2.  
  3. var con = mysql.createConnection({
  4. host: "smart-dem.me",
  5. port: 3307,
  6. user: "username",
  7. password: "password"
  8. });
  9.  
  10. con.connect(function(err) {
  11. if (err) throw err;
  12. console.log("Connected!");
  13. });
Add Comment
Please, Sign In to add comment