12345678910111213141516 |
- const mysql = require('mysql2');
- const pool = mysql.createPool({
- host: '192.168.110.85',
- port: 3306,
- user: 'xiaoding_test',
- password: '5zWmCxsxsSPt6fH3',
- database: 'xiaoding_test',
- waitForConnections: true,
- connectionLimit: 10,
- queueLimit: 0
- });
- module.exports = pool.promise();
|