15 lines
299 B
JavaScript
15 lines
299 B
JavaScript
const mysql = require('mysql2/promise');
|
|
|
|
// 配置数据库连接池
|
|
const pool = mysql.createPool({
|
|
host: 'localhost',
|
|
user: 'langrensha',
|
|
password: 'T3NXSPnXmR5pzcSX',
|
|
database: 'langrensha',
|
|
waitForConnections: true,
|
|
connectionLimit: 10,
|
|
queueLimit: 0,
|
|
});
|
|
|
|
module.exports = pool;
|