Skip to content

Instantly share code, notes, and snippets.

@jsstoni
Created December 19, 2016 08:03
Show Gist options
  • Save jsstoni/fa8cb409af3dbc9f53b7ac726ad4e201 to your computer and use it in GitHub Desktop.
Save jsstoni/fa8cb409af3dbc9f53b7ac726ad4e201 to your computer and use it in GitHub Desktop.
pool mysql
var mysql = require('mysql');
var pool = mysql.createPool({
connectionLimit : 10,
host : 'example.org',
user : 'bob',
password : 'secret',
database : 'my_db'
});
pool.query('SELECT 1 + 1 AS solution', function(err, rows, fields) {
if (err) throw err;
console.log('The solution is: ', rows[0].solution);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment