egg装mysql驱动_node_egg数据库mysql安装配置
时间: 2024-01-02 17:04:27 浏览: 87
MySQL安装配置
3星 · 编辑精心推荐
在 Node.js 的 Egg 框架中,可以通过以下步骤来安装和配置 MySQL 数据库:
1. 安装 mysql2 包
```
npm install --save mysql2
```
2. 在 config/config.default.js 中添加 MySQL 配置信息:
```
config.mysql = {
client: {
host: 'localhost',
port: '3306',
user: 'root',
password: 'your_password',
database: 'your_database',
},
app: true,
agent: false,
};
```
3. 在需要使用 MySQL 数据库的地方,可以通过以下方式获取到 MySQL 实例:
```
const mysql = app.mysql;
```
4. 调用 MySQL 实例提供的方法来操作数据库,例如:
```
const result = await mysql.insert('table_name', {
column1: value1,
column2: value2,
});
```
其中,`table_name` 是要操作的表名,`column1` 和 `column2` 分别是表中的列名,`value1` 和 `value2` 分别是要插入的值。
以上就是在 Node.js 的 Egg 框架中安装和配置 MySQL 数据库的方法。
阅读全文