Examples of db()


Examples of com.dkhenry.RethinkDB.RqlConnection.db()

    RqlConnection r;
    try {
      r = RqlConnection.connect("localhost",PRIMARY_PORT);
      // r.db('test').table_create('dc_universe').run(conn)
      r.run(r.db_create("test12345"));
      r.run(r.db("test12345").table_create("dc_universe"));
      r.run(r.db_drop("test12345"));
      r.close();
    }    
    catch (RqlDriverException e) {
      e.printStackTrace();
View Full Code Here

Examples of com.dkhenry.RethinkDB.RqlConnection.db()

    RqlConnection r;
    try {
      r = RqlConnection.connect("localhost",PRIMARY_PORT);
      // r.db('test').table_list().run(conn)
      r.run(r.db_create("test123456"));
      r.run(r.db("test123456").table_list());
      r.run(r.db_drop("test123456"));
      r.close();
    }    
    catch (RqlDriverException e) {
      e.printStackTrace();
View Full Code Here

Examples of com.dkhenry.RethinkDB.RqlConnection.db()

    RqlConnection r;
    try {
      r = RqlConnection.connect("localhost",PRIMARY_PORT);
      // r.db('test').table_drop('dc_universe').run(conn)
      r.run(r.db_create("test1234567"));
      r.run(r.db("test1234567").table_create("dc_universe"));
      r.run(r.db("test1234567").table_drop("dc_universe"));
      r.run(r.db_drop("test1234567"));
      r.close();
    }    
    catch (RqlDriverException e) {
View Full Code Here

Examples of com.dkhenry.RethinkDB.RqlConnection.db()

    try {
      r = RqlConnection.connect("localhost",PRIMARY_PORT);
      // r.db('test').table_drop('dc_universe').run(conn)
      r.run(r.db_create("test1234567"));
      r.run(r.db("test1234567").table_create("dc_universe"));
      r.run(r.db("test1234567").table_drop("dc_universe"));
      r.run(r.db_drop("test1234567"));
      r.close();
    }    
    catch (RqlDriverException e) {
      e.printStackTrace();
View Full Code Here

Examples of com.dkhenry.RethinkDB.RqlConnection.db()

    boolean rvalue = false;
    RqlConnection r;
    try {
      r = RqlConnection.connect("localhost",PRIMARY_PORT);
      r.run(r.db_create("test12345678"));
      r.run(r.db("test12345678").table_create("dc_universe"));
      r.table("dc_universe");
      r.run(r.db("test12345678").table_drop("dc_universe"));
      r.run(r.db_drop("test12345678"));
      r.close();
    }    
View Full Code Here

Examples of com.dkhenry.RethinkDB.RqlConnection.db()

    try {
      r = RqlConnection.connect("localhost",PRIMARY_PORT);
      r.run(r.db_create("test12345678"));
      r.run(r.db("test12345678").table_create("dc_universe"));
      r.table("dc_universe");
      r.run(r.db("test12345678").table_drop("dc_universe"));
      r.run(r.db_drop("test12345678"));
      r.close();
    }    
    catch (RqlDriverException e) {
      e.printStackTrace();
View Full Code Here

Examples of com.dkhenry.RethinkDB.RqlConnection.db()

        RqlCursor cursor = r.run(r.db_create(database));

        RqlObject obj = cursor.next();
        assert Double.valueOf(1.0).equals(obj.getAs("created")) : "Database was not created successfully ";

        cursor = r.run(r.db(database).table_create(table));
        obj = cursor.next();

        assert Double.valueOf(1.0).equals(obj.getAs("created")) : "Table was not created successfully";
        cursor = r.run(r.db(database).table(table).insert( Arrays.asList(
                new HashMap() {{
View Full Code Here

Examples of com.dkhenry.RethinkDB.RqlConnection.db()

        cursor = r.run(r.db(database).table_create(table));
        obj = cursor.next();

        assert Double.valueOf(1.0).equals(obj.getAs("created")) : "Table was not created successfully";
        cursor = r.run(r.db(database).table(table).insert( Arrays.asList(
                new HashMap() {{
                    put("TestForNullInsert", null);
                }}
        )));
        assert Double.valueOf(1.0).equals(cursor.next().getAs("inserted")) : "Error inserting null value into Database";
View Full Code Here

Examples of com.dkhenry.RethinkDB.RqlConnection.db()

                    put("TestForNullInsert", null);
                }}
        )));
        assert Double.valueOf(1.0).equals(cursor.next().getAs("inserted")) : "Error inserting null value into Database";

        cursor = r.run(r.db(database).table(table).get_all("TestForNullInsert"));
        obj = cursor.next();
        assert obj.getAs("TestForNullInsert") == null : "Error Getting null value out of database";

        cursor = r.run(r.db(database).table_drop(table));
        assert Double.valueOf(1.0).equals(cursor.next().getAs("dropped")) : "Table was not dropped successfully ";
View Full Code Here

Examples of com.dkhenry.RethinkDB.RqlConnection.db()

        cursor = r.run(r.db(database).table(table).get_all("TestForNullInsert"));
        obj = cursor.next();
        assert obj.getAs("TestForNullInsert") == null : "Error Getting null value out of database";

        cursor = r.run(r.db(database).table_drop(table));
        assert Double.valueOf(1.0).equals(cursor.next().getAs("dropped")) : "Table was not dropped successfully ";

        r.run(r.db_drop(database));
        r.close();
    }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.