來自 PHP 背景,連接到 MySQL 資料庫對於處理資料至關重要。 Node.js 提供與 MySQL 整合的靈活選項。
要使用 Node.js 連接到 MySQL,您可以利用 Node.js 生態系統中提供的各種模組。考慮以下流行的選項:
node-mysql
此模組是建立連接和對 MySQL 資料庫執行查詢的簡單直接的方法。它為從 PHP 環境過渡的開發人員提供了熟悉的介面。
// Example usage const mysql = require('mysql'); const connection = mysql.createConnection({ host: 'example.org', user: 'bob', password: 'secret', }); connection.connect((err) => { if (err) throw err; console.log('Connected to MySQL database!'); });
node-mysql2
該模組提供了一組更高級的功能,包括管道和準備聲明。推薦用於需要高效能和複雜查詢操作的應用程式。
// Example usage const mysql2 = require('mysql2'); const connection = mysql2.createConnection({ host: 'example.org', user: 'bob', password: 'secret', }); connection.execute('SELECT * FROM users', (err, results) => { if (err) throw err; console.log('Query results:', results); });
透過這些模組,您可以將 MySQL 與 Node.js 應用程式無縫集成,確保高效的資料管理和檢索。
以上是如何將 MySQL 資料庫與 Node.js 整合?的詳細內容。更多資訊請關注PHP中文網其他相關文章!