node-mongodb
node-mongodb copied to clipboard
mongodb bindings for node.js
Build failed: -> task failed (err #1): {task: cxx_link mongo_1.o,bson_1.o -> mongo.node}
Checking for program g++ or c++ : /usr/bin/g++ Checking for program cpp : /usr/bin/cpp Checking for program ar : /usr/bin/ar Checking for program ranlib : /usr/bin/ranlib Checking for g++ :...
I'm on ubuntu 9.10 with node 0.1.32 defrex@laps:~/Desktop/node-mongo$ node-waf configure build Check for program g++ or c++ : /usr/bin/g++ Check for program cpp : /usr/bin/cpp Check for program ar :...
I am facing an issue with the "./run-tests.sh" step .. Please help. Thank you. ubuntu-desktop:~/orlandov-node-mongodb-02811fe$ ./run-tests.sh test #0 test #1 test #2 test #3 test #4 test #5 test #6...
probably want to update the readme: sleet:node-mongodb davida$ ./update-mongo-c-driver.sh Initialized empty Git repository in /Users/davida/src/node-mongodb/mongo-c-driver/.git/ remote: Counting objects: 713, done. remote: Compressing objects: 100% (291/291), done. remote: Total 713 (delta...
in posts 30 records: posts.insert({ checkSum: checkSum, (md5) topicId : topic, (integer) topicName : name (long text, length ~ 100-200) }); posts.find(null, null, function(results) { sys.puts(results.length); //if results is "large"...
I could not figure out how to retrieve a value from MongoDB#find() Example: ``` examples.insert({ name: "Guest" }) results = examples.find() ``` or ``` examples.insert({ name: "Guest" }) results =...
It'd be really useful to be able to use BSON as a generic, schema-less, binary serialization format. It looks like the code for encoding/decoding BSON is fairly separate, but it'd...
The tests pass, and everything works if it happens to occur inside a listener like so: ``` mongo.addListener("connection", function () { mongo.getCollection('widgets').count(null, function(count) { sys.puts(count) }) }) ``` However, when...