Advertisement
Guest User

Untitled

a guest
Nov 2nd, 2016
65
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.39 KB | None | 0 0
  1. global.mysql = mysql_module.createConnection({
  2.  
  3. host: config.mysql.host,
  4. user: config.mysql.user,
  5. password: config.mysql.password
  6. });
  7.  
  8. global.mysql = mysql_module.createPool({
  9.  
  10. host: config.mysql.host,
  11. user: config.mysql.user,
  12. password: config.mysql.password,
  13. database : config.mysql.database,
  14. connectionLimit : 50
  15. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement