gpt4 book ai didi

MySQL 与 Node.js

转载 作者:IT老高 更新时间:2023-10-28 12:47:39 25 4
gpt4 key购买 nike

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

如何在 Node.js 中使用 MySQL?

最佳答案

查看 node.js module list

  • node-mysql — 一个实现 MySQL 协议(protocol)的 node.js 模块
  • node-mysql2 — 又一个纯 JS 异步驱动程序。流水线,准备好的语句。
  • node-mysql-libmysqlclient — 基于 libmysqlclient 的 MySQL 异步绑定(bind)

node-mysql 看起来很简单:

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'

关于MySQL 与 Node.js,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5818312/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com