반응형
TypeError: Cannot read property 'query' of undefined
에러난 부분 코드
const mysql = require("mysql");
let pool = mysql.createPool({
host: "127.0.0.1",
user: "root",
password: "root",
database: "auction_test",
connectionLimit: 30,
});
module.exports = pool;
모듈로 인한 에러였다. mysql에서 mysql2로 바꾸어 준 후 해결되었다.
반응형
'ERROR' 카테고리의 다른 글
[ Error ] -스프링 부트 관련 에러 (0) | 2023.02.23 |
---|---|
[ Error ] - React material-ui error (0) | 2022.10.12 |
[ Error ] - ReferenceError: __dirname is not defined in ES module scope (0) | 2022.08.15 |
[ ERROR ] - next error (Unhandled Runtime Error) (0) | 2022.08.03 |
[ Error ] - node-fetch 관련 에러 (0) | 2022.06.14 |