Description
The result iterator can have the following methods
public interface ResultSet {
public boolean hasNext();
public String[] next();
public String[] getColumnNames();
}
This can be used by clients to programmatically consume the result with ease.