-
Node.js) Cannot enqueue Handshake after already enqueuing a Handshake.Programing Language/Node.js 2021. 4. 14. 15:39728x90반응형
const mysql = require('mysql');
var connection = mysql.createConnection({
host: 'localhost',
port: 3306,
user: '1',
password: '1',
connectionLimit: 1,
database: "1"
});connection.connect();
에서 connection.connect();이 두번연속해서 발생하여 error 처리한 것이다.
connection.connect(); 명령어는
app.get("/", () => {
안에 두는것보다
});
밖에 도두록 하자.
예)
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersvar express = require('express'); var router = express.Router(); var connection = mysql.createConnection({ host: 'localhost', port: 3306, user: '1', password: '1', connectionLimit: 1, database: "1" }); /* GET home page. */ connection.connect(); router.get('/', async function (req, res, next) { connection.query("select * from 1", function (err, rows) { if (err) { console.log(err) } else { res.send(rows[0]); } }); ); 728x90반응형'Programing Language > Node.js' 카테고리의 다른 글
Node.js) mariadb에 다중쿼리 처리 방법, sql에 파라미터 매핑하는 다양한 방법 (0) 2021.04.14 Node.js) mariadb 연결하기 (연결시 주의할점..) (0) 2021.04.14 Ubuntu) iptable nat 조회 및 설정 삭제 (0) 2021.03.26 Node.js) pm2 이용법(node js 파일 백그라운드 실행) (0) 2021.03.26 Node.js 설치방법 (Aws) (0) 2021.03.25