<bdo id='3OPU3'></bdo><ul id='3OPU3'></ul>

    <tfoot id='3OPU3'></tfoot>
  • <small id='3OPU3'></small><noframes id='3OPU3'>

      <legend id='3OPU3'><style id='3OPU3'><dir id='3OPU3'><q id='3OPU3'></q></dir></style></legend>
      <i id='3OPU3'><tr id='3OPU3'><dt id='3OPU3'><q id='3OPU3'><span id='3OPU3'><b id='3OPU3'><form id='3OPU3'><ins id='3OPU3'></ins><ul id='3OPU3'></ul><sub id='3OPU3'></sub></form><legend id='3OPU3'></legend><bdo id='3OPU3'><pre id='3OPU3'><center id='3OPU3'></center></pre></bdo></b><th id='3OPU3'></th></span></q></dt></tr></i><div id='3OPU3'><tfoot id='3OPU3'></tfoot><dl id='3OPU3'><fieldset id='3OPU3'></fieldset></dl></div>

        带有 Node.js 的 MySQL

        时间:2023-08-17

        1. <small id='lRCAR'></small><noframes id='lRCAR'>

            <legend id='lRCAR'><style id='lRCAR'><dir id='lRCAR'><q id='lRCAR'></q></dir></style></legend>
              <tbody id='lRCAR'></tbody>
          1. <tfoot id='lRCAR'></tfoot>
              • <bdo id='lRCAR'></bdo><ul id='lRCAR'></ul>
              • <i id='lRCAR'><tr id='lRCAR'><dt id='lRCAR'><q id='lRCAR'><span id='lRCAR'><b id='lRCAR'><form id='lRCAR'><ins id='lRCAR'></ins><ul id='lRCAR'></ul><sub id='lRCAR'></sub></form><legend id='lRCAR'></legend><bdo id='lRCAR'><pre id='lRCAR'><center id='lRCAR'></center></pre></bdo></b><th id='lRCAR'></th></span></q></dt></tr></i><div id='lRCAR'><tfoot id='lRCAR'></tfoot><dl id='lRCAR'><fieldset id='lRCAR'></fieldset></dl></div>
                  本文介绍了带有 Node.js 的 MySQL的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

                  问题描述

                  我刚刚开始接触 Node.js.我来自 PHP 背景,所以我相当习惯使用 MySQL 来满足我所有的数据库需求.

                  I've just started getting into Node.js. I come from a PHP background, so I'm fairly used to using MySQL for all my database needs.

                  如何将 MySQL 与 Node.js 结合使用?

                  How can I use MySQL with Node.js?

                  推荐答案

                  查看 node.js 模块列表

                  • node-mysql — 一个实现 MySQL 协议的 node.js 模块
                  • node-mysql2 — 另一个纯 JS 异步驱动程序.流水线,准备好的语句.
                  • node-mysql-libmysqlclient — 基于 libmysqlclient 的 MySQL 异步绑定
                  • node-mysql — A node.js module implementing the MySQL protocol
                  • node-mysql2 — Yet another pure JS async driver. Pipelining, prepared statements.
                  • node-mysql-libmysqlclient — MySQL asynchronous bindings based on libmysqlclient

                  node-mysql 看起来很简单:

                  node-mysql looks simple enough:

                  var mysql      = require('mysql');
                  var connection = mysql.createConnection({
                    host     : 'example.org',
                    user     : 'bob',
                    password : 'secret',
                  });
                  
                  connection.connect(function(err) {
                    // connected! (unless `err` is set)
                  });
                  

                  查询:

                  var post  = {id: 1, title: 'Hello MySQL'};
                  var query = connection.query('INSERT INTO posts SET ?', post, function(err, result) {
                    // Neat!
                  });
                  console.log(query.sql); // INSERT INTO posts SET `id` = 1, `title` = 'Hello MySQL'
                  

                  这篇关于带有 Node.js 的 MySQL的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持html5模板网!

                  上一篇:MySQL 8.0 - 客户端不支持服务器请求的认证协议; 下一篇:如何使用一个 SQL 查询获得多个计数?

                  相关文章

                  最新文章

                • <i id='SAhUT'><tr id='SAhUT'><dt id='SAhUT'><q id='SAhUT'><span id='SAhUT'><b id='SAhUT'><form id='SAhUT'><ins id='SAhUT'></ins><ul id='SAhUT'></ul><sub id='SAhUT'></sub></form><legend id='SAhUT'></legend><bdo id='SAhUT'><pre id='SAhUT'><center id='SAhUT'></center></pre></bdo></b><th id='SAhUT'></th></span></q></dt></tr></i><div id='SAhUT'><tfoot id='SAhUT'></tfoot><dl id='SAhUT'><fieldset id='SAhUT'></fieldset></dl></div>

                • <legend id='SAhUT'><style id='SAhUT'><dir id='SAhUT'><q id='SAhUT'></q></dir></style></legend>

                  • <bdo id='SAhUT'></bdo><ul id='SAhUT'></ul>

                  1. <small id='SAhUT'></small><noframes id='SAhUT'>

                    <tfoot id='SAhUT'></tfoot>