
mongodb
iteye_16198
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
mongodb基本命令
导入数据 mongodb-win32-i386-2.0.4\bin>mongorestore -h 127.0.0.1 --directoryperdb [数据地址路径] 1、show dbs 显示当前数据库服务器上的数据库 2、use pagedb 切换到指定数据库pagedb的上下文,可以在此上下文中管理pagedb数据库以及其中的集合等 3、show colle...原创 2012-08-03 11:13:13 · 116 阅读 · 0 评论 -
mongodb inc/dec
// 1.'xx'属性增长一 ops = datastore.createUpdateOperations(Hotel.class).inc("xx"); datastore.update(updateQuery, ops); // 2.'xx'属性值增长4 ops = datastore.createUpdateOperations(Hotel.class).inc("xx", 4)...原创 2012-11-28 16:22:18 · 731 阅读 · 0 评论 -
Mongodb 的ORM框架 Morphia 之 Query接口
原文连接:http://code.google.com/p/morphia/wiki/Query原创 2012-06-27 09:56:10 · 132 阅读 · 0 评论