赞
踩
无返回值。
如果出错则抛异常,并输出错误信息,可以通过getLastErrMsg()获取错误信息或通过getLastError()获取错误码。 关于错误处理可以参考常见错误处理指南。
常见错误可参考错误码。
查询数据。(假定存在集合空间 “sample”,而且当前 SequoiaDB 是独立模式启动的)
- db.sample.employee.find()
- {
- "_id": {
- "$oid": "5d36c9d5c6b1cee56abefc7e"
- },
- "name": "fang",
- "age": 18
- }
卸载内存中的集合空间 “sample”。
db.unloadCS( "sample" )
查询数据。
- db.sample.employee.find()
- uncaught exception: -34
- Collection space does not exist
加载集合空间 “sample” 到内存中。
db.loadCS( "sample" )
再次查询数据。
- db.sample.employee.find()
- {
- "_id": {
- "$oid": "5d36c9d5c6b1cee56abefc7e"
- },
- "name": "fang",
- "age": 18
- }
本文转载自巨杉数据库官网
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。