수업소개
Node.js의 MySQL 모듈의 기본적인 사용방법을 알아봅니다.
1 | npm install -S mysql |
강의
소스코드
nodejs/mysql.js
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 | var mysql = require( 'mysql' ); // 비밀번호는 별도의 파일로 분리해서 버전관리에 포함시키지 않아야 합니다. var connection = mysql.createConnection({ host : 'localhost' , user : 'root' , password : '111111' , database : 'opentutorials' }); connection.connect(); connection.query( 'SELECT * FROM topic' , function (error, results, fields) { if (error) { console.log(error); } console.log(results); }); connection.end(); |