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();
rvalue = true;