Skip to content

Commit

Permalink
docs: add database option to initial example
Browse files Browse the repository at this point in the history
closes #1142
  • Loading branch information
bl4de authored and dougwilson committed Jul 2, 2015
1 parent 7dae8e7 commit 492019f
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion Readme.md
Expand Up @@ -80,7 +80,8 @@ var mysql = require('mysql');
var connection = mysql.createConnection({
host : 'localhost',
user : 'me',
password : 'secret'
password : 'secret',
database : 'my_db'
});

connection.connect();
Expand Down

0 comments on commit 492019f

Please sign in to comment.