1.设计数据库
2.编写代码
demo
var mysql = require('mysql');
var pool = mysql.createPool({
host : 'localhost',
port : '3300',
database : 'user',
user : 'root',
password : '123456',
});
pool.getConnection(function(err, connection) {
if(err) console.log('MySQL数据库建立连接失败。');
else{
console.log('数据库建立连接成功。');
connection.query( 'select * from user', function(err, data) {
if(err) console.log('查询数据操作失败。');
else{
console.log(data);
pool.end();
}
});
}
});
3.输出效果: