將MySQL 與Node.js 整合
如果您從PHP 遷移到Node.js,您可能會想知道如何維護使用MySQL進行資料庫操作。幸運的是,Node.js 提供了多個模組,可以無縫連接 MySQL。
推薦模組:
範例用法(node-mysql):
要開始使用node-mysql,可以使用下列程式碼片段:
var mysql = require('mysql'); var connection = mysql.createConnection({ host : 'example.org', user : 'bob', password : 'secret', }); connection.connect(function(err) { if (err) { throw err; } // Connected successfully. }); // Perform a query. var post = {id: 1, title: 'Hello MySQL'}; var query = connection.query('INSERT INTO posts SET ?', post, function(err, result) { if (err) { throw err; } // Query executed successfully. }); console.log(query.sql); // INSERT INTO posts SET `id` = 1, `title` = 'Hello MySQL'
這些模組提供了一種方便高效的互動方式從Node.js 應用程式使用MySQL。
以上是如何將 MySQL 與 Node.js 整合?的詳細內容。更多資訊請關注PHP中文網其他相關文章!