目录
  1. 1. 安装配置
  2. 2. 快速上手
使用node操作Mysql

安装配置

官方下载

GitHub-mysql

$ npm install mysql

快速上手

var mysql = require('mysql');
// 1.创建连接
var connection = mysql.createConnection({
host : 'localhost',
user : 'root',
password : 'root',
database : 'books'
});

// 2. 连接数据库
connection.connect();

// 3. 执行数据操作 第一个参数写sql语句,增删改查通用一个结果
connection.query('SELECT * FROM `BOOKS` ', function (error, results, fields) {
if (error) throw error;
console.log('The solution is: ', results[0].solution);
});

// 关闭连接
connection.end();
文章作者: Jachie Xie
文章链接: https://xjc5772.github.io/2020-06/10/%E5%AD%A6%E4%B9%A0/%E5%89%8D%E7%AB%AF%E5%AD%A6%E4%B9%A0/NodeJS/%E4%BD%BF%E7%94%A8node%E6%93%8D%E4%BD%9CMysql/
版权声明: 本博客所有文章除特别声明外,均采用 CC BY-NC-SA 4.0 许可协议。转载请注明来自 XJC&Blog
打赏
  • 微信
  • 支付宝

评论