使用mongo c驱动程序时,是否有办法控制查找查询中是否存在错误,这是使用mongoc_collection_find
API函数完成的?
例如,我传递了以下查询
{ "$a" : true }
由于字段名称不能以$a
开头,通常mongodb
会打印某种错误消息(例如,如果我在mongo shell中执行相同的查询),但对于mongo c驱动程序,我没有找到任何方法来控制查询中是否有错误
答案 0 :(得分:0)
奇怪的是,只有在执行查询返回的游标的<configuration>
<sourceDirectory>src/docs/asciidoc</sourceDirectory>
<sourceDocumentName>manual.adoc</sourceDocumentName>
<!-- Attributes common to all output formats -->
<attributes>
<sourcedir>${project.build.sourceDirectory}</sourcedir>
<!-- the new property -->
<final-name>${project.build.finalName}</final-name>
</attributes>
</configuration>
函数后才能找到错误。
所以基本上,它的工作原理如下:
next