const mysql = require('mysql')
// 配置链接MySQL的数据库账户密码
const link = mysql.createConnection({
host: 'localhost',
user: 'root',
password: 'root',
database: 'boblog'
})
// 链接 数据库
link.connect((err, con) => {
if (err) {
console.log(err, '错误')
return
}
console.log(con, '链接MySQL成功')
})
// 发送一个指令 查看 boblog数据库里面有什么数据表
link.query('show tables', (err, con) => {
if (err) {
console.log(err, '错误')
return
}
console.log(con, '数据表')
})
// 导出一个链接
module.exports = link