Advertisement
Guest User

mongo_c_cursor_more

a guest
Jun 17th, 2015
30
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 1.26 KB | None | 0 0
  1. // Init
  2. mongoc_init();
  3.  
  4. mongoc_client_t *client = mongoc_client_new("mongodb://localhost:27017");
  5. mongoc_database_t *db = mongoc_client_get_database(client, "test");
  6. mongoc_collection_t *coll = mongoc_database_get_collection(db, "cursor_test");
  7.  
  8. bson_t *empty = bson_new();
  9.  
  10. if (!mongoc_collection_remove(coll, MONGOC_REMOVE_NONE, empty, NULL, NULL)) {
  11.   printf("Remove failed!\n");
  12. }
  13.  
  14. // Insert test document to query later
  15. bson_t *doc = BCON_NEW("_id", BCON_INT32(1), "user", BCON_UTF8("Test"));
  16.  
  17. if (!mongoc_collection_insert(coll, MONGOC_INSERT_NONE, doc, NULL, NULL)) {
  18.   printf("Insert failed!\n");
  19. }
  20.  
  21. // Query
  22. mongoc_cursor_t *cursor = mongoc_collection_find(coll, MONGOC_QUERY_NONE, 0, -1, -1, empty, NULL, NULL);
  23.  
  24. const bson_t *next;
  25. printf("Has More: %d\n", mongoc_cursor_more(cursor));
  26. if (mongoc_cursor_next(cursor, &next)) {
  27.   printf("%s\n", bson_as_json(next, NULL));
  28. }
  29. printf("Has More: %d\n", mongoc_cursor_more(cursor));
  30. if (mongoc_cursor_next(cursor, &next)) {
  31.   printf("%s\n", bson_as_json(next, NULL));
  32. } else {
  33.   printf("Next cursor failed\n");
  34. }
  35. printf("Has More: %d\n", mongoc_cursor_more(cursor));
  36.  
  37.  
  38. mongoc_cursor_destroy(cursor);
  39. mongoc_database_destroy(db);
  40. mongoc_collection_destroy(coll);
  41. mongoc_client_destroy(client);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement