欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

[Node.js] nodejs 连接 mysql数据库

程序员文章站 2022-04-01 10:28:46
前言细化一下过程安装命令在指定文件夹下安装 mysqlnpm init -ynpm i mysql --registry=https://registry.npm.taobao.org引用命令安装完mysql之后,肯定要引用mysqlconst mysql = require('mysql')创建链接对象这一步是连接你的mysql数据库,需要提前开启数据库const con = mysql.createConnection({ host:...

前言

细化一下过程


安装命令

在指定文件夹下安装 mysql

npm init -y

npm i mysql --registry=https://registry.npm.taobao.org

 

引用命令

[Node.js] nodejs 连接 mysql数据库

安装完mysql之后,肯定要引用mysql

const mysql = require('mysql')

 

创建链接对象

这一步是连接你的mysql数据库,需要提前开启数据库

const con = mysql.createConnection({
    host: 'localhost',//host名称
    user: 'root',//用户名名称
    password: '123',//用户名密码
    port: '3306',//端口号
    database: 'myblog'//数据库名称
})

 

开始连接

在创建完之后,开始连接数据库

con.connect()

 

执行 sql 语句

const sql = 'mysql语句'

 

异步操作

con.query(sql, (err, result) => {
    if (err) {
        console.error(err)
        return
    }
    console.log(result)
})

 

关闭连接

操作完一条sql语句之后,要关闭连接

con.end()

本文地址:https://blog.csdn.net/DeathDomain/article/details/109254176