使用 ObjcMongodb 框架 - 如何在类似于 show collections 的数据库中查找所有集合(shell 命令)
问问题
88 次
2 回答
0
要列出数据库中的所有集合,请查询system.namespaces
集合。
该system.namespaces
集合包括集合名称和索引,因此您需要过滤结果以忽略任何系统集合(例如:)system.indexes
以及包含$
(索引/特殊集合)的那些。
示例代码:
NSError *error = nil;
MongoConnection *dbConn = [MongoConnection connectionForServer:@"127.0.0.1" error:&error];
// For database "mydb", look in "system.namespaces" collection
MongoDBCollection *collection = [dbConn collectionWithName:@"mydb.system.namespaces"];
NSArray *results = [collection findAllWithError:&error];
for (BSONDocument *result in results) {
NSDictionary *systemNamespace = [BSONDecoder decodeDictionaryWithDocument:result];
NSString *collName = [systemNamespace objectForKey:@"name"];
// Namespaces to ignore: mydb.system.* (system) and those containing $ (indexes/special)
if (
([collName rangeOfString:@".system."].location == NSNotFound) &&
([collName rangeOfString:@"$"].location == NSNotFound)) {
NSLog(@"Found collection: %@", collName);
} else {
// NSLog(@"Ignoring: %@", collName);
}
}
于 2014-08-04T14:50:53.040 回答
0
您可以在 MongoConnection 上使用这些方法调用任意数据库命令:
- (NSDictionary *) runCommandWithName:(NSString *) commandName
onDatabaseName:(NSString *) databaseName
error:(NSError * __autoreleasing *) error;
- (NSDictionary *) runCommandWithDictionary:(NSDictionary *) dictionary
onDatabaseName:(NSString *) databaseName
error:(NSError * __autoreleasing *) error;
有关示例,请参见此答案。
于 2014-07-27T17:21:31.863 回答