1. 首页
  2. 大数据
  3. Hadoop
  4. nodeJS使用连接mysql数据库

nodeJS使用连接mysql数据库

上传者: 2020-12-17 09:11:02上传 PDF文件 32.5KB 热度 21次
1.安装mysql模块 npm install mysql 2.创建通用方法 这里使用了Promise函数回调,如果不需要可以不使用的 const mysql = require('mysql') //引用mysql模块 //设置数据库基本信息 const pool = mysql.createPool({ host:"localhost", //IP user:"root", //用户名 password:"root", //密码 database:"heartsofiron" //数据库名称 }) //创建通用方法,这里使用了Promise函数回调,如果
用户评论