Created
September 6, 2013 23:12
-
-
Save tleen/6471233 to your computer and use it in GitHub Desktop.
node mysql socket connect
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var db = mysql.createConnection({ | |
user : 'dbuser', | |
socketPath : '/tmp/mysql.sock', //wherever the mysql socket is | |
database : 'dbname' | |
}); | |
db.connect(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment