QueryRunner runner = new QueryRunner(dataSource); | |
// Use the BeanListHandler implementation to convert all | |
// ResultSet rows into a List of Person JavaBeans. | |
ResultSetHandler<List<Person>> handler = new BeanListHandler<Person>(Person.class); | |
// Execute the SQL statement and return the results in a List of | |
// Person objects generated by the BeanListHandler. | |
List<Person> persons = runner.query("SELECT * FROM Person").execute(handler); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment