Node.js MongoDB 데이터베이스 생성
Node.js MongoDB 데이터베이스 생성
데이터베이스 만들기
MongoDB에서 데이터베이스를 생성하려면 먼저 MongoClient 객체를 생성 한 다음 올바른 IP 주소와 생성하고자하는 데이터베이스의 이름으로 연결 URL을 지정하십시오.
MongoDB는 존재하지 않을 경우 데이터베이스를 생성하고 데이터베이스에 연결합니다.
예
"mydb"라는 데이터베이스를 만듭니다.
var MongoClient = require('mongodb').MongoClient;
var url = "mongodb://localhost:27017/mydb";
MongoClient.connect(url, function(err, db) {
if (err) throw err;
console.log("Database created!");
db.close();
});
위의 코드를 "demo_create_mongo_db.js"라는 파일에 저장하고 파일을 실행하십시오.
"demo_create_mongo_db.js"를 실행하십시오.
C:\Users\Your Name>node demo_create_mongo_db.js
게시판 목록
개발자팁
개발과 관련된 유용한 정보를 공유하세요.
질문은 QA에서 해주시기 바랍니다.
질문은 QA에서 해주시기 바랍니다.
| 번호 | 분류 | 제목 | 글쓴이 | 날짜 | 조회 |
|---|---|---|---|---|---|
| 4946 | node.js | 6년 전 | 2616 | ||
| 4945 | node.js | 6년 전 | 2388 | ||
| 4944 | node.js | 6년 전 | 2526 | ||
| 4943 | node.js | 6년 전 | 2277 | ||
| 4942 | node.js | 6년 전 | 2259 | ||
| 4941 | node.js | 6년 전 | 2723 | ||
| 4940 | node.js | 6년 전 | 1871 | ||
| 4939 | node.js | 6년 전 | 1997 | ||
| 4938 | node.js | 6년 전 | 2461 | ||
| 4937 | node.js | 6년 전 | 2253 | ||
| 4936 | node.js | 6년 전 | 2327 | ||
| 4935 | node.js | 6년 전 | 2143 | ||
| 4934 | node.js | 6년 전 | 2452 | ||
| 4933 | node.js | 6년 전 | 2251 | ||
| 4932 | node.js | 6년 전 | 2691 | ||
| 4931 | node.js | 6년 전 | 2077 | ||
| 4930 | node.js | 6년 전 | 2002 | ||
| 4929 | node.js | 6년 전 | 8638 | ||
| 4928 | node.js | 6년 전 | 3756 | ||
| 4927 | node.js | 6년 전 | 2399 | ||
| 4926 | node.js | 6년 전 | 2509 | ||
| 4925 | node.js | 6년 전 | 2092 | ||
| 4924 | node.js | 6년 전 | 3379 | ||
| 4923 | node.js | 6년 전 | 2229 | ||
| 4922 | node.js | 6년 전 | 1995 | ||
| 4921 | node.js | 6년 전 | 2050 | ||
| 4920 | node.js | 6년 전 | 1769 | ||
| 4919 | node.js | 6년 전 | 2042 | ||
| 4918 | node.js | 6년 전 | 2184 | ||
| 4917 | node.js | 6년 전 | 2400 |
댓글 작성
댓글을 작성하시려면 로그인이 필요합니다.
로그인하기