插入文档(插入数据库)
db.person.insert({_id:"0001",name"yuexin"})
清除数据
db.person.drop()
批量插入文档
shell中不支持批量插入
完成批量插入使用for循环
for(var i=0;i
.. db.persons.insert({_id:i,name:"yuexin"+i})
.. }
save操作
...
分类:
数据库 时间:
2014-09-09 18:28:19
阅读次数:
227
简单的填写你所需要连接的MongoDB的库,即可。 ? 这里为了方便,我们的名字也就是Server的 IP地址 simple Tips , 简单的记录。
分类:
数据库 时间:
2014-09-09 16:25:59
阅读次数:
247
MongoDB五种树形结构表示法MongoDB五种树形结构表示法第一种:父链接结构db.categories.insert( { _id: "MongoDB", parent: "Databases" } )db.categories.insert( { _id: "dbm", parent: "D...
分类:
数据库 时间:
2014-09-09 15:58:28
阅读次数:
332
[ mongoDB ] - 文档型数据库设计模式-如何存储树形数据 [转]在数据库中存储树形结构的数据,这是一个非常普遍的需求,典型的比如论坛系统的版块关系。在传统的关系型数据库中,就已经产生了各种解决方案。此文以存储树形结构数据为需求,分别描述了利用关系型数据库和文档型数据库作为存储的几种设计模式...
分类:
数据库 时间:
2014-09-09 15:48:08
阅读次数:
266
成功启动MongoDB后,再打开一个命令行窗口输入mongo,就可以进行数据库的一些操作。输入help可以看到基本操作命令,只是MongoDB没有创建数据库的命令,但有类似的命令如:如果你想创建一个“myTest”的数据库,先运行use myTest命令,之后就做一些操作(如:db.createCo...
分类:
数据库 时间:
2014-09-09 15:39:48
阅读次数:
405
First open the broswer and type the following url in the address bar.
http://www.mongodb.com/
then you will view the the next page.
click the download mongodb button, and then regi...
分类:
数据库 时间:
2014-09-09 12:54:28
阅读次数:
269
First what I wanna make clear is that in the official website the detailed process of installation has been described. you could call it throught the link
http://docs.mongodb.org/manual/tutorial/ins...
分类:
数据库 时间:
2014-09-09 12:52:38
阅读次数:
219
有一个“文章”类,其中包含一个“List”类型的属性,“段落”类是抽象类,其子类有“副标题段落”、“文本段落”、“图像段落”、“附件段落”、“列表段落”等类型。
将“文章”类型的对象存入MongoDB数据库完全没问题,但是从数据库取回则会引发这样的异常:
[InvalidOperatio...
分类:
数据库 时间:
2014-09-07 23:43:55
阅读次数:
272