Advertisement
Guest User

Untitled

a guest
Aug 22nd, 2017
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.25 KB | None | 0 0
  1. var mysql = require("mysql");
  2. //Database connection
  3. app.use(function(req, res, next){
  4. global.connection = mysql.createConnection({
  5. host : 'localhost',
  6. user : 'root',
  7. password : ' ',
  8. database : 'test'
  9. });
  10. connection.connect();
  11. next();
  12. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement