How to search rows with corresponding date in newEntryIterable
Example :
Table table = db.getTable("Facture");
IndexCursor cursor = CursorBuilder.createCursor(table.getIndex("DateIndex"));
for(Row row : cursor.newEntryIterable("01/03/2014")) {
...
}
No rows are returned, but there are rows with date = 01/03/2014 in my database.