We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 76648c2 commit e4d4084Copy full SHA for e4d4084
Readme.md
@@ -311,7 +311,8 @@ var pool = mysql.createPool({
311
connectionLimit : 10,
312
host : 'example.org',
313
user : 'bob',
314
- password : 'secret'
+ password : 'secret',
315
+ database : 'my_db'
316
});
317
318
pool.query('SELECT 1 + 1 AS solution', function(err, rows, fields) {
@@ -329,7 +330,8 @@ var mysql = require('mysql');
329
330
var pool = mysql.createPool({
331
332
333
334
335
336
337
pool.getConnection(function(err, connection) {
0 commit comments