nodejs与mysql的连接

nodejs与mysql的连接

  1. 新建一个连接:(连接的都是同一个数据库)


    nodejs与mysql的连接_第1张图片
    image.png
  2. 新建数据库:


    nodejs与mysql的连接_第2张图片
    image.png
  3. 新建表:


    nodejs与mysql的连接_第3张图片
    image.png

连接方式:

  1. 连接数据库
let db = mysql.createPool({host: 'localhost', user: 'root', password: '123456', database: 'test2'});
  1. 数据库修改:


    nodejs与mysql的连接_第4张图片
    image.png
  2. 关于主键的自增


    nodejs与mysql的连接_第5张图片
    image.png
  3. 数据查询

db.query(`SELECT username FROM user_table WHERE username=111`, (err, data) => { // 查询
    if (err) {
        console.log(err);
        console.log(0);
    } else if (data.length > 0) {
        console.log(1);
    } else {
    }
});

db.query(`INSERT INTO user_table (username,password,online) VALUES('1111','2111',"0")`, err => { // 插入
    if (err) {
        console.log(err);
        console.log(2);
    } else {
        console.log(3);
    }
});

你可能感兴趣的:(nodejs与mysql的连接)