### Read Rows from Access Database Table Source: https://github.com/spannm/jackcess/blob/master/README.md Example of opening an Access database file and iterating through rows of a specific table. Ensure the database file exists and the table name is correct. The 'DatabaseBuilder.open' method requires a 'java.io.File' object. ```java import io.github.spannm.jackcess.*; import java.io.File; try (Database db = DatabaseBuilder.open(new File("database.accdb"))) { Table table = db.getTable("friends"); for (Row row : table) { System.out.println("Friend Name: " + row.get("name")); } } ``` -------------------------------- ### Add Jackcess Dependency to Gradle Project Source: https://github.com/spannm/jackcess/blob/master/README.md Add this line to your Gradle build.gradle file to include Jackcess in your project. ```groovy implementation 'io.github.spannm:jackcess:5.1.4' ``` -------------------------------- ### Add Jackcess Dependency to Maven Project Source: https://github.com/spannm/jackcess/blob/master/README.md Include this dependency in your Maven pom.xml to use Jackcess in your project. ```xml io.github.spannm jackcess 5.1.4 ``` === COMPLETE CONTENT === This response contains all available snippets from this library. No additional content exists. Do not make further requests.