반응형
Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |
Tags
- Vue.js
- HOC
- MySQL
- v-html
- State
- react
- JavaScript
- 자료구조
- TypeScript
- 자바스크립트
- Vue transition
- Vue
- ES6
- express
- jsx
- nodejs
- vuex
- 리액트
- Wecode
- webpack
- storybook
- App.vue
- input
- sass
- 쉬운설명
- scss
- CSS
- 댓글달기
- event
- mapGetters
Archives
- Today
- Total
익명의 개발노트
6. [MYSQL 연동]하기. 본문
반응형
1. mysql 모듈 설치
npm install mysql
2. 모듈 불러와서 결합하기.
var mysql = require('mysql');
var connection = mysql.createConnection({
host : 'localhost',
port : 3306, //mysql 기본포트, 서버 포트쓰면 안된다!
user : 'root',
password : '********',
database :'jsman' //데이터베이스 어떤걸로 쓸껀지.
});
connection.connect();
connection.query('select * from user', function(err, rows, fields){
if(!err){
console.log('The solution is: ', rows);
}else{
console.log('Error while performing Query.', err);
}
});
connection.end();
주의사항!!
DB 설치시 포트번호 반드시 숙지!!
connection의 포트번호 : 서버 포트번호 아닌 디비 포트번호임..
DB별 기본포트번호 (사용자가 초기설치시 변경가능)
1) MYSQL : 3306
2) ORACL : 1521, 1522
3) MS-SQL : 1433, 1434
난 핵인싸 멍청인가보다. -_- 3시간날림....
반응형
'프로그래밍 > NodeJS' 카테고리의 다른 글
8.[CORS이슈] 해결하기. (0) | 2019.06.28 |
---|---|
7.[Routing] 처리하기. (0) | 2019.06.09 |
4. Node.js 프레임워크 종류별 장단점. (0) | 2019.04.29 |
2. NPM이란? (0) | 2019.03.24 |
3. express와 템플릿 엔진 (0) | 2019.03.24 |
Comments