將MySQL 連接到Node.js 進行資料庫管理
作為從PHP 過渡到Node.js 的初學者,您可能想知道如何整合MySQL 與Node.js 應用程式。為了方便完成此任務,可以使用多個 Node.js 模組來幫助您。
推薦模組:
各種模組為 Node.js 使用者提供有效的 MySQL 整合。一些值得注意的選項包括:
node-mysql 的範例用法:
使用 node-mysql 將 MySQL 與 Node.js 整合相對簡單。以下是一個範例程式碼片段:
// Import the node-mysql module const mysql = require('mysql'); // Establish a connection to the MySQL database const connection = mysql.createConnection({ host: 'example.org', user: 'bob', password: 'secret', }); // Connect to the database connection.connect((err) => { if (err) throw err; console.log("Connected!"); }); // Execute a query const query = connection.query('INSERT INTO posts SET ?', { id: 1, title: 'Hello MySQL' }, (err, result) => { if (err) throw err; console.log("Inserted successfully."); console.log(query.sql); });
此程式碼片段示範了連接資料庫、建立連線、執行查詢和記錄結果的過程。您可以根據您的資料庫配置和特定用例自訂這些參數。
以上是如何將 MySQL 連接到我的 Node.js 應用程式?的詳細內容。更多資訊請關注PHP中文網其他相關文章!