Advertisement
Guest User

Untitled

a guest
Mar 28th, 2019
140
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.38 KB | None | 0 0
  1. /*
  2. FOR INSTALLING OFFICIAL MYSQL DRIVER
  3. npm install mysql
  4. */
  5.  
  6. var mysql = require('mysql');
  7.  
  8. //For Configuration
  9. var connection = mysql.createConnection({
  10. host: "localhost",
  11. user: "your_mysql_username",
  12. password: "your_mysql_password"
  13. });
  14.  
  15. //For Checking connection is established or not
  16. connection.connect(function(err) {
  17. if (err) throw err;
  18.  
  19. console.log("Connected!");
  20. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement