- 몽고DB 쿼리 레퍼런스
http://docs.mongodb.org/manual/reference/sql-comparison/

- 몽고DB 관련 명령어
비슷한 개념이다!
     table = collection
     row = document
     column = field


show dbs :  DB개념 목록
use test

show collections : 테이블개념 목록
db.aa.find();


- Node.js 와 MongoDB Connection Code

var mongoose =require('mongoose');
var Schema = mongoose.Schema;

mongoose.connect('mongodb://localhost/testdb');

//모델의스키마를작성한다
var CommentSchema= new Schema({
desc:String,//내용
hit:Number,//조회수
date:Date//작성일
});

//CommentSchema에맞는CommentModel만들기
//comment는Document,자동으로commentsCollection에모델이저장된

var CommentModel=mongoose.model('comment',CommentSchema);
//CommentModel의인스턴스생성
var comment=new CommentModel();
//인스턴스에값을할당하고
comment.desc="nodejstest";
comment.hit=0;
comment.date=new Date();

//저장하면바로몽고db에올라간다
comment.save(function(err){
if(!err)console.log('Success!');
});


- 용어
     NACL?
     Yum
     closure : js를 제대로 쓸 수 있게 만들어주는 것(변수에 코드 블록(함수)를 저장하는것)
    



'IT노트 > MongoDB' 카테고리의 다른 글

10/07월 빅데이터  (0) 2015.03.21
2장. MongoDB의 시작과 종료  (0) 2015.03.16
mongoDB 자료 게시판 목록  (0) 2015.02.03
2.1 MongoDB 사용자의 생성과 관리  (0) 2015.02.03
2장. MongoDB의 시작과 종료  (0) 2015.02.03
Posted by wychoi
,