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();
}
catch (RqlDriverException e) {