Database/MongoDB 7

[MongoDB] JSON & BSON 의 차이

[정리하게된 배경] MongoDB 응용프로그램을 작성하다 보니 BsonDocument Namespace 를 참조하게 되었다. 지금까지 JSON 문자열의 개념으로 내용을 학습하고 이해했는데 갑자기 BSON 이라는 용어가 갑자기 나오게 되었고 이에 대해 내용을 살펴 보았다. [내용 정리] JSON vs BSON | Find Out The 10 Useful Differences (educba.com) JSON vs BSON | Find Out The 10 Useful Differences In this JSON vs BSON article, we will look at their Meaning, Head To Head Comparison, Key differences and Conclusion in a sim..

Database/MongoDB 2021.11.12

[MongoDB] Insert Documents

[서론] MongoDB Collection 에 Docuement 삽입 관련 [본론] 아래는 MongoDB 공식 사이트에 관련 문서 내용이다. Insert Documents — MongoDB Manual Insert Documents — MongoDB Manual Docs Home → MongoDB Manual➤ Use the Select your language drop-down menu in the upper-right to set the language of the examples on this page.This page provides examples of insert operations in MongoDB.Creating a CollectionIf the collection does not cur..

Database/MongoDB 2021.11.11

[MongoDB] 외부 접속 하용하기 (윈도우)

[서론] MongoDB 에서 외부 접속하용하기 환경 설정 과정 정리 [본론] MongoDB 실행 경로에 mongod.cfg 파일 메모장으로 열기 아래 부분과 유사하게 생긴 부분을 찾아서 아래 처럼 설정해줌. 초기에 어떻게 설저되어 있었는지 기억이 나지 않음. (테스트 완료 후 과정을 기술하는 포스팅를 작성하다 보니 결과만 남음...) 아마 127.0.0.1 이지 않았나 싶은데... 암튼 누구나 접속을 허용하도록 설정하려면 위치럼 bindIp: 0.0.0.0 로 해야함. Configuration File Options — MongoDB Manual Configuration File Options — MongoDB Manual Docs Home → MongoDB ManualThe following page ..

Database/MongoDB 2021.11.11

[MongoDB] connection String

[서론] MongoDB 를 활용한 응용프로그램 작성에서 client.connectionString 에 대한 문자열값 입력에 대한 내용 간략한 정리 [본론] Connection String URI Format — MongoDB Manual Connection String URI Format — MongoDB Manual Docs Home → MongoDB ManualThis document describes the URI formats for defining connections between applications and MongoDB instances in the official MongoDB Drivers. For a list of drivers and links to driver documentat..

Database/MongoDB 2021.11.11

MongoDB 다운 받고 설치하기 (윈도우버전)

1. 구글 검색에서 mongodb download 입력 2. MongoDB Community Download 선택 3. Download 선택 4. 다운로드 받은 프로그램 설치 파일 (msi 파일) 실행 5. 위 화면에서 [Next] 버튼 클릭 6. 체크박스 체크 후 [Next] 7. Complete 선택 8. [Next] 9. [Next] 10. [Install] 선택 11. 위 화면에서 설치를 진행할 것인지 묻는 팝업이 나오거나 아래 작업표시줄에서 대기하고 있을 수 있음. 그 때 [확인] 버튼을 눌러줘야 Status 가 진행되면서 설치가 될 것임. 12. 설치완료.

Database/MongoDB 2021.05.25