#1:安装模块
npm install mysql -g
#引用sql
const mysql=require('mysql');
#2:创造连接池
const pool = mysql.createPool(
{
connectionLimit: 20,
host: '*****',
port: ***,
user: '***',
password: '***',
database: '***'//需要操作的数据库名称
})
#3:开始连接
pool.getConnection((err, connection) => {
if (err) throw err
console.log('连接成功!')
connection.release()
})
#数据库记得开权限允许连接的IP
0 评论