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