您好,登錄后才能下訂單哦!
1、安裝Mongo數據庫:
在發布本文的時間官方提供的最新版本是:1.6.5 ,如果不做特殊聲明,本教程所用的版本將會是這個版本。
第一步:下載安裝包:官方下載地址←單擊此處,如果是win系統,注意是64位還是32位版本的,請選擇正確的版本。
第二步:新建目錄“D:\MongoDB”,解壓下載到的安裝包,找到bin目錄下面全部.exe文件,拷貝到剛創建的目錄下。
第三步:在“D:\MongoDB”目錄下新建“data”文件夾,它將會作為數據存放的根文件夾。
配置Mongo服務端:
打開CMD窗口,按照如下方式輸入命令:
> d:
> cd D:\MongoDB
> mongod --dbpath D:\MongoDB\data
在瀏覽器輸入:http://localhost:27017/,可以看到如下提示:
You are trying to access MongoDB on the native driver port. For http diagnostic access, add 1000 to the port number
2、基本操作:
創建\使用數據庫:
> use mongotest
switched to db mongotest
顯示數據表:
> show tables;
插入數據:
> item={"Key":"1","text":"wokao","number":3}
{ "Key" : "1", "text" : "wokao", "number" : 3 }
> db.wang.insert(item)
查詢數據:
> db.wang.find();
{ "_id" : ObjectId("52c7812912eae9cca2c31826"), "Key" : "1", "text" : "wokao", "number" : 3 }
> item={"Key":"1","text":"wokao"}
{ "Key" : "1", "text" : "wokao" }
> db.wang.insert(item)
> db.wang.find();
{ "_id" : ObjectId("52c7812912eae9cca2c31826"), "Key" : "1", "text" : "wokao", "number" : 3 }
{ "_id" : ObjectId("52c7814912eae9cca2c31827"), "Key" : "1", "text" : "wokao" }
> show tables;
system.indexes
wang
> db.system.indexes.find();
{ "v" : 1, "key" : { "_id" : 1 }, "ns" : "mongotest.wang", "name" : "_id_" }
數據刪除:
> db.wang.remove({ "_id" : ObjectId("52c7812912eae9cca2c31826")})
> db.wang.find();
{ "_id" : ObjectId("52c7814912eae9cca2c31827"), "Key" : "1", "text" : "wokao" }
數據修改:
> db.wang.find();
{ "_id" : ObjectId("52c7814912eae9cca2c31827"), "Key" : "1", "text" : "wokao" }
> var t=db.wang.findone({"Key" : "1"})
Sat Jan 04 11:42:29.671 TypeError: Property 'findone' of object mongotest.wang is not a function
> var t=db.wang.findOne({"Key" : "1"})
> t.text="wo shi ni yeye!!"
wo shi ni yeye!!
> db.wang.update({"Key" : "1"},t)
> db.wang.find();
{ "_id" : ObjectId("52c7814912eae9cca2c31827"), "Key" : "1", "text" : "wo shi ni yeye!!" }
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。