본문 바로가기
Back_end/node.js

node.js ) mysql 연결 및 사용(maria DB)

by nomfang 2021. 4. 22.
728x90
반응형

maria DB도 mysql을 사용한다

 

npm install mysql  로 패키지 다운 후

const mysql = require('mysql'); 

let connection = mysql.createConnection({  // mysql 연결 후 database를 객체로 받아오도록
    host: '서버 주소',
    user: '유저 id',
    password: '유저 password',
    database: '데이터베이스 이름'
});

connection.connect(); // 연결 실행

connection.query('sql 쿼리', (error, result)=>{
    if(!error){
        // sql 쿼리 후 실행문
    }else{
        // error 시 실행문
    }
})
반응형

'Back_end > node.js' 카테고리의 다른 글

node.js) nunjucks로 html 다루기 (feat.날짜)  (0) 2021.04.22
node.js) nunjucks (html에 값 전달)  (0) 2021.04.22
node.js) 환경변수 설정 (dotenv)  (0) 2021.04.21
node.js) post()  (0) 2021.04.20
node.js) 시작 - 서버 실행, get()  (0) 2021.04.20

댓글