美文网首页
nodejs与mysql的连接

nodejs与mysql的连接

作者: bingyeby | 来源:发表于2017-12-10 10:57 被阅读0次

    nodejs与mysql的连接

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


      image.png
    2. 新建数据库:


      image.png
    3. 新建表:


      image.png

    连接方式:

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


      image.png
    2. 关于主键的自增


      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的连接

          本文链接:https://www.haomeiwen.com/subject/smhuixtx.html