db.js 291 B

123456789101112131415
  1. // sales-server/db.js
  2. const mysql = require('mysql2/promise');
  3. // 配置你的MySQL信息
  4. const dbConfig = {
  5. host: 'localhost',
  6. user: 'root',
  7. password: '你的密码',
  8. database: 'sales_platform'
  9. };
  10. // 创建连接池
  11. const pool = mysql.createPool(dbConfig);
  12. module.exports = pool;