使用Node.js 連接MySQL 資料庫的步驟如下:安裝MySQL 用戶端程式庫建立MySQL 連線連接到MySQL 資料庫查詢資料庫關閉連線
如何使用Node.js 連線MySQL
要使用Node.js 連線MySQL 資料庫,需要遵循下列步驟:1. 安裝MySQL 用戶端程式庫
<code class="shell">npm install mysql</code>2. 建立MySQL 連線
<code class="javascript">const mysql = require('mysql'); const connection = mysql.createConnection({ host: 'localhost', user: 'root', password: 'my_password', database: 'my_database' });</code>3. 連線到MySQL 資料庫
<code class="javascript">connection.connect((err) => { if (err) { console.error('error connecting: ' + err.stack); return; } console.log('connected as id ' + connection.threadId); });</code>4. 查詢資料庫
<code class="javascript">connection.query('SELECT * FROM my_table', (err, rows) => { if (err) { console.error('error querying: ' + err.stack); return; } console.log('rows: ', rows); });</code>5. 關閉連線
<code class="javascript">connection.end((err) => { // ... });</code>
##MySQL 用戶端程式庫也提供了其他連線選項,包括:
host
:指定資料庫伺服器的主機名稱或IP 位址(預設為'localhost')user
:指定用於連接到資料庫的使用者名稱password
:指定用於連接到資料庫的密碼database
# :指定要連接的資料庫名稱port
:指定資料庫伺服器的連接埠(預設為3306)以上是nodejs怎麼連接mysql的詳細內容。更多資訊請關注PHP中文網其他相關文章!