After running for a while the code highlighted in red fails with the exception shown above.
graph.command(new OSQLAsynchQuery<Vertex>("select * from Data_Groups where i18n=? and path=?",
new OCommandResultListener() {
int resultCount = 0;
@Override
public boolean result(Object iRecord) {
resultCount++;
String json = graph.getVertex(iRecord).getRecord().toJSON("rid");
resultData.setJSON(json);
return resultCount < 1;
}
@Override
public void end() {
}
})).execute(i18n, url);
Den torsdag den 18. februar 2016 kl. 17.28.59 UTC+1 skrev Thom: