summaryrefslogtreecommitdiff
path: root/client/examples/first.cpp
blob: 3d2dd32f0b0d901718abcd6e1efcaf99be40fcfb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
// first.cpp

/**
 * this is a good first example of how to use mongo from c++
 */

#include <iostream>

#include "mongo/client/dbclient.h"

using namespace std;
using namespace mongo;

void insert( DBClientConnection & conn , const char * name , int num ){
    BSONObjBuilder obj;
    obj.append( "name" , name );
    obj.append( "num" , num );
    conn.insert( "test.people" , obj.doneAndDecouple() );
}

int main(){

    DBClientConnection conn;
    string errmsg;
    if ( ! conn.connect( "127.0.0.1" , errmsg ) ){
        cout << "couldn't connect : " << errmsg << endl;
        throw -11;
    }

    { // clean up old data from any previous tests
        BSONObjBuilder query;
        conn.remove( "test.people" , query.doneAndDecouple() );
    }
                 
    insert( conn , "eliot" , 15 );
    insert( conn , "sara" , 23 );
    
    {
        BSONObjBuilder query;
        auto_ptr<DBClientCursor> cursor = conn.query( "test.people" , query.doneAndDecouple() );
        cout << "using cursor" << endl;
        while ( cursor->more() ){    
            BSONObj obj = cursor->next();
            cout << "\t" << obj.jsonString() << endl;
        }
        
    }
    
    {
        BSONObjBuilder query;
        query.append( "name" , "eliot" );
        BSONObj res = conn.findOne( "test.people" , query.doneAndDecouple() );
        cout << res.isEmpty() << "\t" << res.jsonString() << endl;
    }

    {
        BSONObjBuilder query;
        query.append( "name" , "asd" );
        BSONObj res = conn.findOne( "test.people" , query.doneAndDecouple() );
        cout << res.isEmpty() << "\t" << res.jsonString() << endl;
    }
    

}