在Linux上使用Node.js连接数据库,你需要首先确保已经安装了Node.js和相应的数据库驱动。以下是一些常见数据库的连接方法:
首先,安装mysql
模块:
npm install mysql
然后,创建一个名为db.js
的文件,并添加以下代码:
const mysql = require('mysql');
const connection = mysql.createConnection({
host: 'localhost',
user: 'your_username',
password: 'your_password',
database: 'your_database'
});
connection.connect((err) => {
if (err) {
console.error('Error connecting to the database:', err);
return;
}
console.log('Connected to the MySQL server.');
});
// 在这里添加你的数据库操作代码
connection.end();
将your_username
、your_password
和your_database
替换为实际的数据库凭据。
首先,安装pg
模块:
npm install pg
然后,创建一个名为db.js
的文件,并添加以下代码:
const { Client } = require('pg');
const client = new Client({
host: 'localhost',
user: 'your_username',
password: 'your_password',
database: 'your_database',
port: 5432, // PostgreSQL默认端口
});
client.connect((err) => {
if (err) {
console.error('Error connecting to the database:', err);
return;
}
console.log('Connected to the PostgreSQL server.');
});
// 在这里添加你的数据库操作代码
client.end();
将your_username
、your_password
和your_database
替换为实际的数据库凭据。
首先,安装mongodb
模块:
npm install mongodb
然后,创建一个名为db.js
的文件,并添加以下代码:
const MongoClient = require('mongodb').MongoClient;
const uri = 'mongodb://your_username:your_password@localhost:27017/your_database';
const client = new MongoClient(uri, { useNewUrlParser: true, useUnifiedTopology: true });
client.connect((err) => {
if (err) {
console.error('Error connecting to the database:', err);
return;
}
console.log('Connected to the MongoDB server.');
// 在这里添加你的数据库操作代码
client.close();
});
将your_username
、your_password
和your_database
替换为实际的数据库凭据。
这些示例展示了如何在Linux上的Node.js应用程序中连接到MySQL、PostgreSQL和MongoDB数据库。根据你的需求,你可以使用这些示例作为连接其他数据库的起点。