温馨提示×

linux node.js怎样连接数据库

小樊
81
2024-12-29 14:13:30
栏目: 编程语言

在Linux上使用Node.js连接数据库,你需要首先确保已经安装了Node.js和相应的数据库驱动。以下是一些常见数据库的连接方法:

  1. 连接MySQL数据库:

首先,安装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_usernameyour_passwordyour_database替换为实际的数据库凭据。

  1. 连接PostgreSQL数据库:

首先,安装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_usernameyour_passwordyour_database替换为实际的数据库凭据。

  1. 连接MongoDB数据库:

首先,安装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_usernameyour_passwordyour_database替换为实际的数据库凭据。

这些示例展示了如何在Linux上的Node.js应用程序中连接到MySQL、PostgreSQL和MongoDB数据库。根据你的需求,你可以使用这些示例作为连接其他数据库的起点。

0