The easiest way with JdbcExecutor to query is to use a queryForList()
method. If you want to specify the exact SQL, use
`executor.queryForList(new RawSqlStatement(YOUR_SQL)` which will return
a List of Maps containing the data from the result set.
Nathan