我正在使用Node和mysqljs构建快速原型。
我想实现以下目标: a)创建一次连接池,然后在应用程序生命周期内与其他模块共享 b)根据我的代码创建数据库。
所以我正在实现这样的a):
const mysql = require('mysql');
const dbConfig = {
host : 'localhost',
user : 'root',
password : 'groot',
connectTimeout: 10000,
// no database name here, as it still does not exist
multipleStatements: true
};
const pool = mysql.createPool(dbConfig);
pool.on('error', function(err: MysqlError) {
console.log(err.code);
});
module.exports = pool;
问题在于,当我创建池时,数据库仍然不存在。在以下代码中,我创建了数据库,将连接数据库更改为它,并创建了我需要的表:
const db: Pool = require("./connection");
const createDb = () => {
db.query("CREATE DATABASE IF NOT EXISTS test;", (err: MysqlError | null) => {
if (err) throw err
console.log("Database created");
db.getConnection((err: MysqlError, connection: PoolConnection) => {
if (err) {
// handle/report error
return;
}
connection.changeUser({
database: 'test'
}, function (err) {
if (err) {
// handle/report error
return;
}
// Use the updated connection here, eventually
createTables();
// release it:
connection.release();
});
})
});
}
问题在于,现在仅针对创建数据库后获得的连接设置数据库;如果我在同一地方使用相同的连接池,则仍然会收到ER_NO_DB_ERROR。
所以问题是-如何为整个可重用池设置新创建的数据库?
对不起,如果我在这里错过了一些基础知识,那么我是Node中的新手...