public void insertAndRetrieveSingleRow() throws RqlDriverException {
SecureRandom random = new SecureRandom();
String database = new BigInteger(130, random).toString(32);
String table = new BigInteger(130, random).toString(32);
RqlConnection r = RqlConnection.connect("localhost",28015);
r.run(r.db_create(database));
r.run(r.db(database).table_create(table));
RqlCursor cursor = r.run(r.db(database).table(table).insert( Arrays.asList(
new HashMap() {{ put("name","Worf");put("show","Star Trek TNG"); }},
new HashMap() {{ put("name","Data");put("show","Star Trek TNG"); }},