-
Notifications
You must be signed in to change notification settings - Fork 545
Tutorial
Tyler Brock edited this page Apr 15, 2014
·
41 revisions
#include "mongo/bson/bson.h"
#include "mongo/client/dbclient.h"
using namespace mongo;
DBClientConnection conn;
conn.connect("localhost");
conn.insert(
"test.test",
BSON(
"name" << "Tyler" <<
"age" << 29 <<
"awesome" << true
)
);