2016-05-30 nodejs操作mysql nodejs mysqlnodejs 1. 安装 $ npm install mysql 2. 代码123456789101112131415161718var mysql = require('mysql');var connection = mysql.createConnection({ host : 'localhost', user : 'root', password : 'root', database : 'test'});connection.connect();connection.query('select * from test', function(err, rows) { if (err) throw err; console.log('The solution is: ', rows); console.log(fiels);});connection.end(); 3. 结束 赏 × 纯属好玩 扫码打赏,你说多少就多少 打开支付宝扫一扫,即可进行扫码打赏哦 本文标题:nodejs操作mysql 文章作者:John Doe 发布时间:2016年05月30日 - 23时36分 最后更新:2017年04月03日 - 14时17分 原始链接:http://yoursite.com/2016/05/30/nodejs-mysql-connection/ 许可协议: "署名-非商用-相同方式共享 3.0" 转载请保留原文链接及作者。 < java操作mysql android的webview和back键 >