node.js如何连接数据库
时间: 2023-07-07 18:30:13 浏览: 112
在Node.js中连接数据库有多种方式,以下是其中两种比较常用的方式:
1. 使用官方提供的MySQL、MongoDB等数据库模块,例如使用MySQL模块连接MySQL数据库的代码如下:
```javascript
const mysql = require('mysql');
const connection = mysql.createConnection({
host : 'localhost',
user : 'root',
password : 'password',
database : 'my_db'
});
connection.connect();
connection.query('SELECT * FROM my_table', function (error, results, fields) {
if (error) throw error;
console.log('The solution is: ', results);
});
connection.end();
```
2. 使用ORM框架,例如Sequelize、Mongoose等,这种方式可以更方便地进行数据库操作,例如使用Sequelize连接MySQL数据库的代码如下:
```javascript
const Sequelize = require('sequelize');
const sequelize = new Sequelize('my_db', 'root', 'password', {
host: 'localhost',
dialect: 'mysql'
});
sequelize.authenticate()
.then(() => {
console.log('Connection has been established successfully.');
})
.catch(err => {
console.error('Unable to connect to the database:', err);
});
```
以上两种方式都需要先安装相应的模块或框架。
阅读全文