12345678910111213 |
- const mysql = require('mysql')
- const pool = mysql.createPool({
- // host: '127.0.0.1',
- host: 'localhost',
- port: 3306,
- user: 'root',
- password: '123456',
- // password: '010203zx',
- database: 'data_mark',
- connectionLimit: 15,
- dateStrings: true
- })
- module.exports = pool
|