const express = require('express');
const mysql = require('mysql2');
const app = express();
const port = 8080;
// mysql 계정 연동
const connection = mysql.createConnection({
host: 'localhost',
user: 'root',
password: '****',
database: 'boilerdb'
});
// mysql 연결
connection.connect(console.log('mysql is connected'));
// mysql로 query보내기
connection.query('SELECT * from users', (error, rows, fields) => {
if(error) throw error;
console.log('User INFO IS ', rows);
})
app.get('/', (req, res) => res.send("hello world!"));
app.listen(port, () => console.log(`server is running on port ${port}`));
'학습노트 > 데이터베이스' 카테고리의 다른 글
서비스에 mysql 없음 (0) | 2021.01.13 |
---|---|
[MySQL] MySQL Workbench 사용방법 (0) | 2020.09.25 |
[MySQL] MySQL Workbench 설치방법 (오류 MySQL Workbench 8.0 CE Setup Wizard ended prematurely 해결 방법) (0) | 2020.09.25 |
[MySQL] MySQL Client(monitor, Workbench) (0) | 2020.09.25 |
[MySQL] 관계형 데이터베이스 (0) | 2020.09.25 |