Home
last modified time | relevance | path

Searched refs:mongo_update (Results 1 – 11 of 11) sorted by relevance

/dports/databases/py-mongoengine/mongoengine-0.20.0/mongoengine/queryset/
H A Dtransform.py229 mongo_update = {}
233 mongo_update.update(value)
388 if key not in mongo_update:
389 mongo_update[key] = value
390 elif key in mongo_update and isinstance(mongo_update[key], dict):
391 mongo_update[key].update(value)
393 return mongo_update
/dports/www/nginx-full/nginx_http_gridfs_module-7970bab/mongo-c-driver/test/
H A Dupdate.c64 mongo_update( conn, ns, &cond, &op, 0 ); in main()
H A Dvalidate.c76 result = mongo_update( conn, ns, bson_empty( &empty ), &b, 0 ); in main()
/dports/www/nginx-full/nginx_http_gridfs_module-7970bab/mongo-c-driver/docs/source/sphinx/source/
H A Dtutorial.rst321 Use the ``mongo_update()`` function to perform updates.
348 mongo_update( conn, "tutorial.persons", cond, op, MONGO_UPDATE_BASIC );
354 The final argument to ``mongo_update()`` is a bitfield storing update options. If
360 mongo_update( conn, "tutorial.persons", cond, op, MONGO_UPDATE_MULTI );
/dports/devel/py-minimongo/minimongo-0.2.7/minimongo/
H A Dmodel.py204 def mongo_update(self, values=None, **kwargs): member in Model
/dports/www/nginx-full/nginx_http_gridfs_module-7970bab/mongo-c-driver/src/
H A Dmongo.h348 MONGO_EXPORT int mongo_update( mongo *conn, const char *ns, const bson *cond,
H A Dmongo.c648 MONGO_EXPORT int mongo_update( mongo *conn, const char *ns, const bson *cond, in mongo_update() function
1269 res = mongo_update( conn, ns, &user_obj, &pass_obj, MONGO_UPDATE_UPSERT ); in mongo_cmd_add_user()
/dports/net/freeswitch/freeswitch-1.10.3.-release/src/mod/event_handlers/mod_cdr_mongodb/driver/src/
H A Dmongo.h411 MONGO_EXPORT int mongo_update( mongo *conn, const char *ns, const bson *cond,
H A Dmongo.c913 MONGO_EXPORT int mongo_update( mongo *conn, const char *ns, const bson *cond, in mongo_update() function
1653 res = mongo_update( conn, ns, &user_obj, &pass_obj, MONGO_UPDATE_UPSERT, NULL ); in mongo_cmd_add_user()
/dports/net/freeswitch/freeswitch-1.10.3.-release/src/mod/event_handlers/mod_cdr_mongodb/driver/
H A DHISTORY.md22 * int mongo_update( mongo *conn, const char *ns, const bson *cond,
/dports/devel/py-minimongo/minimongo-0.2.7/minimongo/tests/
H A Dtest_model.py192 model.mongo_update({'$inc': {'counter': 1}})