방문해 주셔서 감사합니다! 항상 행복하세요! - 문의사항은 메일 또는 댓글로 언제든 연락주세요. - "해줘","답 내놔" 같은 질문은 답변드리지 않습니다. - 메일주소 : lts06069@naver.com 마리아1 NodeJs Mysql 연동(Nodejs Maria 연동, 노드js 마리아, 노드js mysql) 1. 설치한 모듈 npm install mysql 2. 1차 소스코드 const mysql = require('mysql'); //My-sql을 사용하였다. const connection = mysql.createConnection({ //커넥션 생성 host: 'ip주소', user: '아이디', database: '데이터베이스 명칭', password : '비밀번호' }); connection.query("select * from test", function (error, results, fields) { //조회 if (error) { console.log(error); } else { console.log(results); //결과 출력(간혹 커넥션이 끊어졌다는 오류가 나올때가 있다.) } });.. 2019. 8. 14. 이전 1 다음