const mysql = require('mysql'); // 创建连接池 const pool = mysql.createPool({ host: 'localhost', // 数据库地址 user: 'root', // 数据库用户名 password: 'your_password', // 数据库密码 database: 'attendance_system' // 使用的数据库 }); module.exports = pool;