Skip to content

Instantly share code, notes, and snippets.

@vodolaz095
Created July 6, 2013 09:01
Show Gist options
  • Save vodolaz095/5939316 to your computer and use it in GitHub Desktop.
Save vodolaz095/5939316 to your computer and use it in GitHub Desktop.
nodejs - mysql - json
var mysql = require('mysql');
var connection = mysql.createConnection({
host : 'example.org',
user : 'bob',
password : 'secret',
});
connection.query('SELECT * FROM `tbl` ORDER BY `id` DESC', function(err, rows) {
console.log(JSON.stringify(rows));
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment