Node.js MySQL 데이터베이스 만들기
그럼 node js나 node js MySQL 연결에서 데이터베이스를 생성하는 방법을 알아보겠습니다.
MySQL 데이터베이스를 다운로드할 수 있습니다: https://www.mysql.com/downloads/ .
Step 1: Install MySQL Driver
먼저 컴퓨터에서 MySQL을 실행해야 합니다. Node.js를 사용하여 액세스할 수 있습니다.
Node.js로 MySQL 데이터베이스에 액세스하려면 MySQL 드라이버가 필요합니다. 이제 NPM에서 다운로드한 "mysql"모듈을 사용합니다.
Read Also: How To Generate QR Code In Node.js
아래 명령을 사용하여 애플리케이션에 "mysql"모듈을 다운로드하고 설치합니다.
npm install mysql
이제 mysql 데이터베이스 드라이버를 다운로드하여 설치해야 합니다.
Node.js는 이 모듈을 사용하여 MySQL 데이터베이스를 조작할 수 있습니다.
var mysql = require('mysql');
Step 2: Connect Database
애플리케이션에 db_connection.js 파일을 생성합니다. 해당 파일에 아래 코드를 추가하십시오.
var mysql = require('mysql');
var con = mysql.createConnection({
host: "localhost",
user: "your_username",
password: "your_password"
});
con.connect(function(err) {
if (err) throw err;
console.log("Connected..!!");
});
Step 3: Create Database with Connection
MySQL에서 데이터베이스를 만들고 "CREATE DATABASE"문을 사용합니다. 따라서 아래 코드를 복사하여 파일에 붙여넣으십시오.
Read Also: How To Import CSV File In MySQL Using Node.js
데이터베이스 이름 : node_mysql_demo
var mysql = require('mysql');
var con = mysql.createConnection({
host: "localhost",
user: "your_username",
password: "your_password"
});
con.connect(function(err) {
if (err) throw err;
console.log("Connected..!!");
con.query("CREATE DATABASE node_mysql_demo", function (err, result) {
if (err) throw err;
console.log("Database Created..!!");
});
});
Step 4 : Run db_connection.js file
아래 코드를 사용하여 db_connection.js를 실행합니다.
node db_connection.js
Reference
이 문제에 관하여(Node.js MySQL 데이터베이스 만들기), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://dev.to/techsolutionstuff/nodejs-mysql-create-database-4id9텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)