首页 > 代码库 > 学习Nodejs之mysql

学习Nodejs之mysql

学习Nodejs连接mysql数据库:

1、先安装mysql数据库

  

npm install mysql

2、测试连接数据库:

var sql = require("mysql");var db = sql.createConnection({host:"localhost",ure:"root",password:"",database:"test"});db.query("select * from user where 1",function(err,data){    if(err)        console.log("出错了!");    else{        console.log(data+"哈哈");//正确的时候,查询出来的数据data    }});

 

学习Nodejs之mysql