Node.js 连接 mysql 数据库(Navicat)超详细!!!
在Node.js中连接MySQL数据库,你可以使用mysql
模块。以下是步骤和示例代码:
- 安装
mysql
模块:
npm install mysql
- 使用
mysql
模块创建连接并查询数据库:
// 引入mysql模块
const mysql = require('mysql');
// 创建连接对象
const connection = mysql.createConnection({
host: 'localhost', // 数据库地址
user: 'your_username', // 数据库用户名
password: 'your_password', // 数据库密码
database: 'your_database' // 数据库名
});
// 开启连接
connection.connect();
// 执行查询
connection.query('SELECT * FROM your_table', (error, results, fields) => {
if (error) throw error;
// 处理查询结果
console.log(results);
});
// 关闭连接
connection.end();
确保替换your_username
、your_password
、your_database
和your_table
为你的MySQL数据库的实际用户名、密码、数据库名和表名。
Navicat是一个数据库管理工具,它不用于在Node.js中连接到MySQL数据库。Node.js通过代码直接与MySQL数据库通信。如果你需要一个图形界面来管理MySQL数据库,Navicat是一个很好的选择,但在编写Node.js代码时,你不需要它。
评论已关闭