Results returned by a call to {@link Dao#queryRaw(String,String)} which returns results as a String[],{@link Dao#queryRaw(String,RawRowMapper,String)} which returns results mapped by the caller to an Object, and{@link Dao#queryRaw(String,DataType[],String)} which returns each results as a Object[].
You can access the results one of two ways using this object. You can call the {@link #getResults()} method whichwill extract all results into a list which is returned. Or you can call the {@link #iterator()} method eitherdirectly or with the for... Java statement. The iterator allows you to page through the results and is more appropriate for queries which will return a large number of results.
NOTE: If you access the {@link #iterator()} method, you must call {@link CloseableIterator#close()} methodwhen you are done otherwise the underlying SQL statement and connection may be kept open.
@author graywatson