newEntryIterable で対応する日付の行を検索する方法
例 :
Table table = db.getTable("Facture");
IndexCursor cursor = CursorBuilder.createCursor(table.getIndex("DateIndex"));
for(Row row : cursor.newEntryIterable("01/03/2014")) {
...
}
行は返されませんが、データベースに日付 = 01/03/2014 の行があります。