|
MongoDB Database Abstraction SYNOPSIStypedef struct _mongoc_database_t mongoc_database_t; mongoc_database_t provides access to a MongoDB database. This handle is useful for actions a particular database object. It is not a container for mongoc_collection_t structures. Read preferences and write concerns are inherited from the parent client. They can be overridden with mongoc_database_set_read_prefs() and mongoc_database_set_write_concern(). EXAMPLES#include <mongoc/mongoc.h>
int
main (int argc, char *argv[])
{
AUTHORMongoDB, Inc COPYRIGHT2009-present, MongoDB, Inc.
|