一、安装MySQL模块:
1
npm install mysql
二、配置数据库连接参数(dbconfig.js)
1
2
3
4
5
6
7
8
//mysql配置文件
var mysql = {
host: "xx.xxx.xx.xxx", //这是数据库的地址
user: "xxx", //需要用户的名字
password: "xxx", //用户密码 ,如果你没有密码,直接双引号就是
database: "xxx" //数据库名字
}
module.exports = mysql; //用module.exports暴露出这个接口
三、连接数据库(index.js)
1、查询
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
var mysql = require('mysql')
var dbConfig = require('../config/dbconfig')
router.get('/db',function(req,res){
var conn =mysql.createConnection(dbConfig)//连接数据库
conn.query("select * from student",function(err,results,fields){
if(err){
throw err
}
console.log(results)
})
conn.end((err)=>{ //关闭数据库
if(err){
console.error(err.stack)
return
}
})
})
2、插入数据
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
router.post('/insert',function(req,res){
var data = {s_id:'09',s_name:'杨洋',s_birth:new Date(),s_gender:'男'}
var conn =mysql.createConnection(dbConfig)//连接数据库
conn.query("insert into student set ?",data,function(err,results,fields){
if(err){
throw err
}
console.log(results)
})
conn.end((err)=>{ //关闭数据库
if(err){
console.error(err.stack)
return
}
})
})
3、删除数据
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
router.post('/delete',function(req,res){
var conn =mysql.createConnection(dbConfig)//连接数据库
conn.query("delete from student where s_id = ?",'09',function(err,results,fields){
if(err){
throw err
}
console.log(results)
})
conn.end((err)=>{ //关闭数据库
if(err){
console.error(err.stack)
return
}
})
})
4、更新数据
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
router.post('/update',function(req,res){
var conn =mysql.createConnection(dbConfig)//连接数据库
conn.query("update student set s_name = ?,s_gender=? where s_id=?",['张三','男','02'],function(err,results,fields){
if(err){
throw err
}
console.log(results)
})
conn.end((err)=>{ //关闭数据库
if(err){
console.error(err.stack)
return
}
})
})