Menu
×
   ❮     
HTML CSS JAVASCRIPT SQL PYTHON JAVA PHP HOW TO W3.CSS C C++ C# BOOTSTRAP REACT MYSQL JQUERY EXCEL XML DJANGO NUMPY PANDAS NODEJS R TYPESCRIPT ANGULAR GIT POSTGRESQL MONGODB ASP AI GO KOTLIN SASS VUE DSA GEN AI SCIPY AWS CYBERSECURITY DATA SCIENCE
     ❯   

Node.js MySQL


Node.js 可用于数据库应用程序。

MySQL 是最流行的数据库之一。


MySQL 数据库

为了能够试验代码示例,您应该在计算机上安装 MySQL。

您可以在 https://www.mysqlserver.cn/downloads/ 下载免费的 MySQL 数据库。


安装 MySQL 驱动程序

在计算机上运行 MySQL 后,您可以使用 Node.js 访问它。

要使用 Node.js 访问 MySQL 数据库,您需要一个 MySQL 驱动程序。本教程将使用从 NPM 下载的“mysql”模块。

要下载并安装“mysql”模块,请打开命令终端并执行以下操作

C:\Users\您的用户名>npm install mysql

现在您已经下载并安装了 mysql 数据库驱动程序。

Node.js 可以使用此模块来操作 MySQL 数据库

var mysql = require('mysql');


创建连接

首先创建与数据库的连接。

使用 MySQL 数据库的用户名和密码。

demo_db_connection.js

var mysql = require('mysql');

var con = mysql.createConnection({
  host: "localhost",
  user: "您的用户名",
  password: "您的密码"
});

con.connect(function(err) {
  if (err) throw err;
  console.log("连接成功!");
});
运行示例 »

将上面的代码保存在名为“demo_db_connection.js”的文件中,然后运行该文件

运行“demo_db_connection.js”

C:\Users\您的用户名>node demo_db_connection.js

这将为您提供以下结果

连接成功!

现在您可以开始使用 SQL 语句查询数据库了。


查询数据库

使用 SQL 语句读取(或写入)MySQL 数据库。这也被称为“查询”数据库。

上面示例中创建的连接对象具有一个用于查询数据库的方法

con.connect(function(err) {
  if (err) throw err;
  console.log("连接成功!");
  con.query(sql, function (err, result) {
    if (err) throw err;
    console.log("结果: " + result);
  });
});

query 方法将 sql 语句作为参数,并返回结果。

在接下来的章节中,学习如何读取、写入、删除和更新数据库。

在我们的 SQL 教程 中了解更多关于 SQL 语句的信息。


×

Contact Sales

If you want to use W3Schools services as an educational institution, team or enterprise, send us an e-mail:
[email protected]

Report Error

If you want to report an error, or if you want to make a suggestion, send us an e-mail:
[email protected]

W3Schools is optimized for learning and training. Examples might be simplified to improve reading and learning. Tutorials, references, and examples are constantly reviewed to avoid errors, but we cannot warrant full correctness of all content. While using W3Schools, you agree to have read and accepted our terms of use, cookie and privacy policy.

Copyright 1999-2024 by Refsnes Data. All Rights Reserved. W3Schools is Powered by W3.CSS.