0
votes
1answer
25 views

query distinct value and iterate through results MongoDB C API

I'm trying to run a query that gets only distinct values from MongoDB. I got the query running and it returns the correct values, however I'm not sure how to iterate over the resulting BSON array ...
0
votes
1answer
89 views

G-WAN behave strangely when using mongoDB

I'm working with G-WAN & mongoDB and I have a strange behavior. When I display my page, it looks ok. If I refresh it it will stop working after 5 or 6 refresh. Here the code // ...
0
votes
2answers
162 views

gwan and mongodb

I am new to gwan and currently coding a simple program to insert and select data from MongoDB. After I compile the Mongo-c-driver, and put the Mongo standard library in /usr/lib/, I find that my ...
0
votes
1answer
34 views

Mongodb C driver with my program

I had dl the Mongodb-c-driver from github.com, and compile it without problem, however, while I try to compile my C program, problem occurs: testmongo.c:(.text+0x20): undefined reference to ...
1
vote
0answers
43 views

using mongo-c-driver can not use regular expressions containing forward slash (/)

I am trying to use the C-API for MongoDB. I want to find records with a name matching a regular expression containing slashes (/). If I run the mongo command line I get 40 results for the query: ...
1
vote
1answer
93 views

Mongodb C Driver: How to clear database?

Using the Mongodb C Driver, how can I issue shell commands like db.mydb.remove()? The API seems pretty limited: http://api.mongodb.org/c/current/api/annotated.html
0
votes
1answer
54 views

cannot compile mongo-c-driver example

I try to write simple mongo c client. Source file (a.c): #include <stdio.h> #define MONGO_HAVE_STDINT #include <mongo.h> void mongo_init_c(mongo *con) { mongo_init(con); } int main() ...
1
vote
0answers
99 views

store image with GridFS in MongoDB C API

I'm trying to find resources and examples on how to use GridFS in MongoDB with the C CPI. I specifically need the C API and not the C++ or C#. I can't seem to find any examples on the C version. I ...
1
vote
0answers
110 views

How to configure and run nginx-gridfs

I am trying to run nginx-gridfs from github to connect mongodb with nginx . I followed the exact procedure as shown in the https://github.com/mdirolf/nginx-gridfs README file . I compiled and make ...
0
votes
1answer
101 views

Nginx module for serving files from MongoDB's Make error

I am trying to run nginx-gridfs from github to connect mongodb with nginx . I followed the exact procedure as shown in the https://github.com/mdirolf/nginx-gridfs README file .when i configured using ...
0
votes
1answer
48 views

MongoDB returns truncated float value to 6 decimal points

I connect to a MongoDB with the latest C-Driver. When I insert a float value, say 1.0043820142745972, and then query it back I only seem to get 1.004382! For some reason all float values get truncated ...
0
votes
1answer
43 views

mongodb:close log out in mongod

I've started mongodb on my machine and the log goes to /usr/local/var/log/mongodb/mongo.log. When I execute any query/insert/delete/update the operation is logged to that file too. How can I supress ...
0
votes
1answer
76 views

How to reconnect to replica set when primary node crash?

In this simple program, I want to reconnect to replica set when the primary node crash. But it doesn't work: if the primary node crash, this program will be terminated immediately without any output, ...
0
votes
2answers
107 views

mongodb C driver query to select specific field

Ive read that it is possible to select only one field in MongoDB: db.records.find({TimeStampSec {$lt:10} , {ch11:1}) For example, this query returns the field ch11 of all objects that have the ...
2
votes
2answers
123 views

How should I insert a huge int/double array into a bson object?

How should I add a huge multi-dimensional (100x100) integer/double/float field to a BSON object with the C library? The closest stackoverflow question/answer I see is for C++ ( MongoDB: how do I ...
0
votes
1answer
139 views

Mongodb: Tailable cursor in c driver with latest “_id”

I am trying to implement a tailable cursor for mongo using C driver. Uptil now i have been able to create it and successfully get the pushed data into my process with the following code cursor ...
0
votes
1answer
352 views

impossible constraint in asm

I'm trying cross compile mongodb to a custom linux. It compiles fine with linux, but when used the cross compiler toolchain, it complains about this code. static T compareAndSwap(volatile T* ...
0
votes
0answers
156 views

Mongo C driver: Dynamic Linking with undefined symbol giving runtime error

I am trying to use Mongo C driver in my application but stuck badly in a linking problem. MongoC drivers provides 4 objects (libbson.a + libbson.so + libmongoc.a + libmongoc.so). My Makefile has ...
0
votes
0answers
164 views

iterate array mongodb C

Guys i'm having a big problem to iterate in an array using mongodb and C-driver, it must returns some value, but it returns a blank value. :( Follow the code: mongo mgConn; mongo_cursor ...
2
votes
2answers
286 views

MongoDB C driver on Mac OSX Lion

I am trying to write a small C based client for mongo db for my application. Let me start by saying that I haven't programmed in C in a long time now, so may be the problem I am facing is a very basic ...
2
votes
1answer
200 views

mongodb c api no insert no error

I am trying to connect to mongodb and insert GET parameters, using G-WAN and mongodb's C driver, i successfully connecting to mongodb, but i havent succeeded any data inserts. I am using the code ...
0
votes
2answers
244 views

Convert from MongoDB _id to string in C

I want to use the mongodb _id attribute to guarantee uniqueness in a name. mongo_cursor_init( cursor, &conn, &database ); bson_iterator iterator[1]; bson_find( iterator, mongo_cursor_bson( ...
0
votes
1answer
272 views

mongodb C driver authentication

I can't seem to find documentation on authentication into mongodb from the C driver. The C driver API has no information on it as far as I can tell. However, this link makes me think that it's ...
2
votes
2answers
444 views

MongoDB, ZeroMQ and C

i'm with a great problem, i have some code using ZeroMQ and C, and another code that uses MongoDB and C, now i have to merge this codes, but when i try to compile using this command: gcc -static ...
-1
votes
1answer
163 views

Complex query mongodb c

I've created my mongodb query like this > 86 bson query[1]; 87 bson_init(query); 88 bson_append_start_object(query, "service.virtual_mach ine"); 89 ...
0
votes
2answers
452 views

Query mongodb C

I'm trying to make a query that must to retrieve some data from my mongodb database, follow my code: 72 mongo conn[1]; 73 mongo_cursor cursor[1]; 74 75 //Parameters (connection, IP, ...
0
votes
2answers
214 views

How to use const char pointer returned from a function in this instance? (mongodb related)

I'm having a bit of trouble with a a function that the mongodb c driver uses. The function in question looks like this: gridfile_get_field (gridfile *gfile, const char *name) (returns const char *) ...
1
vote
0answers
219 views

Error when building a c driver

I had download the source code and SCONS tools. Then I try to run "scons" to build, but the build fails with the following output: scons: Reading SConscript files ... Compiling for amd64 Checking for ...
1
vote
1answer
104 views

Compiling PHP Driver for MongoDB in Visual Studio

I'm currently trying to compile a PHP driver for MongoDB using Visual Studio 2008 and I'm facing some problems with the compilation process. Every time I try to build the project, the compiler keeps ...
1
vote
2answers
234 views

MongoDB retrieve records using $or in C

I'm trying to emulate the following MongoDB shellcode: db.products.find( { $or : [ { title : /blue/i }, { tags : /blue/i } ] }, {_id:0, title:1} ); This is what I've tried: bson query[1]; ...
1
vote
1answer
313 views

How to link between MongoDB C Driver to my own programs

I'm a novice user for MongoDB using C driver, and I can't find any detail tutorial that teach how to create my first MongoDB program in C. I've created my first program according to ...
1
vote
2answers
182 views

Which NoSQL Database for Mostly Writing

I'm working on a system that will generate and store large amounts of data to disk. A previously developed system at the company used ordinary files to store its data but for several reasons it became ...
4
votes
1answer
385 views

MongoDB: Which C Driver?

I'm new to MongoDB and just found out that the MongoDB driver from the Ubuntu repositories I've been checking out is not the same as the official driver. My question is, what are their differences? I ...
1
vote
3answers
331 views

powerdns + mongodb

I was trying to compile the mongodbbackend module for powerdns but I'm stuck with this problem: In file included from mongodbbackend.cc:18: mongodbbackend.hh: At global scope: mongodbbackend.hh:109: ...
1
vote
1answer
281 views

MongoDB Aggregate function(distinct) in c programming

I want to use distinct function in users collection. In mongo shell, I can use like the following: db.users.distinct("name"); where name is the collections field used to distinct. likewise I ...
5
votes
1answer
150 views

c statement equivalent to mongo query db.users.find({age {$gt: 3}}, {})

I have searched for the usage of conditional statements(<,>,<=,etc..,) in C API documentation in the link http://api.mongodb.org/c/current/. But I am unable to find it. Example: The mongo ...
1
vote
0answers
384 views

How to design MongoDB connection pooling using C driver?

I've a multi-threaded (POSIX threads) application written in C which now needs to send data to MongoDB. Each thread is supposed to send data independently. Currently, I am making a new connection in ...
1
vote
3answers
266 views

How can I get a list of databases and collections on a MongoDB server?

I'm writing a GUI client for MongoDB in C. I use the C driver for MongoDB. I want to get a list of databases and their collections, but I can't find any functions in the documentation to do that. How ...
0
votes
1answer
224 views

Can't dynamically link to MongoDB c driver library

I'm really perplexed as to what the problem could be. I put libbson.a libbson.so libmongoc.a libmongoc.so into the same folder as my executable. The header files are also in the same folder. Then I ...
0
votes
1answer
605 views

Counting Documents in Mongo Cursor with C & BSON

I'm working on a project and need to count the amount of documents (MongoDB) in a cursor with BSON and C. Here is my code: bson_buffer_init(query_buf); ...
1
vote
1answer
833 views

mongodb as round-robin-database

I am using mongo-db for realtime analytics, I am getting 5 million data points per day which will increase in future to 10 million at least. my question is: Capped collections are circular so my ...
7
votes
4answers
2k views

Which NoSQL db to use with C?

I'm working on an application that I'm going to write with C and i am considering to use a nosql db for storing timeseries data with at most 8 or 9 fields. But in every 5 minutes there will huge write ...