Node.js 异步编程与连接mysql数据库

Posted 编程艺术之美

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Node.js 异步编程与连接mysql数据库相关的知识,希望对你有一定的参考价值。

异步编程的直接体现就是回调。

异步编程依托于回调来实现,但不能说使用了回调后程序就异步化了。

回调函数在完成任务后就会被调用,Node 使用了大量的回调函数,Node 所有 API 都支持回调函数。

例如,我们可以一边读取文件,一边执行其他命令,在文件读取完成后,我们将文件内容作为回调函数的参数返回。这样在执行代码时就没有阻塞或等待文件 I/O 操作。这就大大提高了 Node.js 的性能,可以处理大量的并发请求。


var fs = require("fs");

fs.readFile('input.txt', function (err, data) {

    if (err) return console.error(err);

    console.log(data.toString());

});


console.log("程序执行结束!");



在使用mysql数据库连接时,需要安装mysql库,命令行为:npm install mysql


var mysql=require('mysql');


var dbinfo={

host:'localhost',

user:'root',

password:'root',

database:'jxc'

};

var connection = mysql.createConnection(dbinfo);


connection.connect(function(err) {

  if (err) {

    console.error('error connecting: ' + err.stack);

    return;

  } 

  console.log('connected as id ' + connection.threadId);

});


//查询

connection.query('SELECT 1 + 1 AS solution', function(err, rows, fields) {

    if (err) throw err;

    console.log('The solution is: ', rows[0].solution);

});

//关闭连接

connection.end();



npm 的包安装分为本地安装(local)、全局安装(global)两种,

npm install express # 本地安装

npm install express -g # 全局安装


本地安装

1. 将安装包放在 ./node_modules 下(运行 npm 命令时所在的目录),如果没有 node_modules 目录,会在当前执行 npm 命令的目录下生成 node_modules 目录。

2. 可以通过 require() 来引入本地安装的包。


全局安装

1. 将安装包放在 /usr/local 下或者你 node 的安装目录。

2. 可以直接在命令行里使用。


以上是关于Node.js 异步编程与连接mysql数据库的主要内容,如果未能解决你的问题,请参考以下文章

Node.js 同步与异步编程

Node.js之异步编程

Node.js连接mysql

node.js 异步使用 SQL

青训营Node.js基础 - 异步编程四种解决方案

青训营Node.js基础 - 异步编程四种解决方案