Advertisement
Guest User

Untitled

a guest
Sep 9th, 2017
105
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.21 KB | None | 0 0
  1. let mysql = require('mysql');
  2. ...
  3. const connection = mysql.createConnection({
  4. host: "somedatabasehost.com",
  5. user: "someuser",
  6. password: "somepassword",
  7. multipleStatements: true
  8. });
  9. ...
  10. connection.connect();
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement