everyday com-eat
카테고리
작성일
2023. 12. 13. 23:28
작성자
갱수터
728x90

MySQL

DB구축하기

 

(DB) DBMS 구축하기

DBMS - 데이터베이스 관리 시스템(DataBase Management System) 1. DBMS종류를 정하고 설치한다 (Oracle,MySQL,IBM의 DB2, SQL Server,MongoDB 등) - 우리는 mysql를 서버 설치(구축)한다. http://oracle.com/ - mysql dbms를 관리하

everyday-com-eat.tistory.com

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

모듈 설치 및 의존성 설정

npm install --save(or -S) mysql

--save(or -S): 현재 설치하는 모듈을 package.json 파일의 dependencies에 추가하는 것까지 진행

 

 

DB연결

  • 공식사이트의 소개페이지 코드에서 상황에 맞게 코드 수정하기
var mysql = require('mysql');
var connection = mysql.createConnection({
    host     : 'localhost',
    user     : 'jinsugyeong',
    password : '0000',
    database : 'opentutorials'
});

connection.connect();

connection.query('SELECT * FROM topic', function(error, results, fields) {
    if(error){
        console.log(error);
    };
    console.log(results);
});
connection.end();

 

 

 

결과