C, C++ and C#

/* connect_test.c */
#include "test.h"
#include "mongo.h"
#include <stdio.h>
#include <string.h>
#include <stdlib.h>
int main() {
    mongo conn[1];
    char version[10];
    INIT_SOCKETS_FOR_WINDOWS;
    if( mongo_connect( conn, TEST_SERVER, 27017 ) != MONGO_OK ) {
        printf( "failed to connect\n" );
        exit( 1 );
    }
    /* mongo_connect should print a warning to stderr that it is deprecated */
    /* write_concern should be 0 for backwards compatibility */
    ASSERT( conn->write_concern == (void*)0 ); 
    mongo_destroy( conn );
    return 0;
}



>>
 


+ o -