nodejs 操作mysql数据库

2022-01-18  本文已影响0人  暴躁程序员

此功能需要在mysql数据库环境安装好后运行

  1. 初始化项目
    npm init -y
  2. 安装 mysql 依赖包
    cnpm i mysql -S
  3. 在根目录新建index.js
const mysql = require('mysql')
// 数据库配置对象
const databaseConfig = mysql.createConnection({
    host: 'localhost',
    user: 'root',
    password: '123456',
    port: '3306',
    database: 'hair_home'
})
databaseConfig.connect()  // 开始连接
// 执行 sql 语句
const sql = `select * from user_info where username = '青龙' and password = '123456';`
databaseConfig.query(sql, (err, result) => {
    if (err) {
        console.error(err)
        return
    }
    console.log(result)
})
databaseConfig.end()  // 关闭连接
  1. 运行
    node index.js
上一篇下一篇

猜你喜欢

热点阅读