在 Node.js 中連接資料庫的步驟:安裝 MySQL、MongoDB 或 PostgreSQL 套件。建立資料庫連接物件。打開資料庫連接,並處理連接錯誤。
如何在Node.js 中連接資料庫
連接MySQL 資料庫
要連接MySQL 資料庫,可以使用下列步驟:
mysql
套件:npm install mysql
const mysql = require('mysql'); const connection = mysql.createConnection({ host: 'localhost', user: 'username', password: 'password', database: 'database_name' });
connection.connect((err) => { if (err) { console.log('Error connecting to database:', err); return; } console.log('Connected to MySQL database'); });
連接MongoDB 資料庫
要連接MongoDB 資料庫,可以使用以下步驟:套件:
npm install mongodb
const mongo = require('mongodb'); const MongoClient = mongo.MongoClient; const url = 'mongodb://localhost:27017';
MongoClient.connect(url, (err, client) => { if (err) { console.log('Error connecting to database:', err); return; } console.log('Connected to MongoDB database'); // 使用 client 对象进行数据库操作 });
要連接PostgreSQL 資料庫,可以使用下列步驟:
安裝npm install pg
建立一個資料庫連接物件:const pg = require('pg'); const connectionString = 'postgres://username:password@localhost:5432/database_name'; const client = new pg.Client(connectionString);
client.connect((err) => { if (err) { console.log('Error connecting to database:', err); return; } console.log('Connected to PostgreSQL database'); });
以上是nodejs怎麼連接資料庫的詳細內容。更多資訊請關注PHP中文網其他相關文章!