分类: mysql操作

2 篇文章

node 连接MySQL数据库报错问题
先贴出 node 连接池的代码 yarn add mysql -s /* 创建一个数据库连接 */const db = mysql.createPool({  host: '114.115.218.xx',  port: "3306",  user: 'root',  password: "xxx", &nb…
node 中操作MySQL数据库
安装 yarn add mysql -S 使用 创建 mysql.js 文件夹 /*导入模块*/const mysql = require('mysql');​/*创建一个数据库连接*/const db = mysql.createPool({  host: '', /* 地址*/  port: "3306", /* 端口号*/…