Using Jackcess 2.0.4 I am trying to query the table and get all rows matching a particular condition.
Map<String, String> testData = new Hashtable<String, String>();
Database db = DatabaseBuilder.open(new File("DB.mdb"));
Table table = db.getTable("db_data");
Cursor cursor = CursorBuilder.createCursor(table);
while (cursor.findNextRow(Collections.singletonMap("case", case))) {
Row row = cursor.getCurrentRow();
testData.put(row.get("Key").toString(), row.get("Data").toString());
}
The value for testData is always null as no rows are returned. I am not sure what I am missing here.
I have even tried the below approach. It's still the same.
for (Row row : cursor.newIterable().addMatchPattern("TestCaseId", testCaseId)) {
testData.put(row.get("Key").toString(), row.get("Data").toString());
}
Check your code to make sure that your column names and types exactly match those in the table. For sample data in a table named [db_data] ...
... the following code ...
... gives me the following console output: