@@ -73,6 +76,11 @@ public class ResultSetTableIterator implements TableIterator {
/** Index of the last read column (=0 just after {@link #nextRow()} and before {@link #nextCol()}, ={@link #nbColumns} after the last column has been read). */
privateintcolIndex;
/** Formatter to use in order to format java.sql.Date values. */
* <p>Build a TableIterator able to read rows and columns of the given ResultSet.</p>
*
@@ -687,7 +695,7 @@ public class ResultSetTableIterator implements TableIterator {
*
* <p>By default, the following function performs the following formatting:</p>
* <ul>
* <li><b>If {@link Timestamp}:</b> the date-time is converted into a string with the ISO8601 format (see {@link ISO8601Format}).</li>
* <li><b>If {@link Timestamp}, {@link Date} or {@link Time}:</b> the date-time is converted into a string with the ISO8601 format (see {@link ISO8601Format}).</li>
* <li><b>If a single CHAR is declared and a String is given:</b> only the first character is returned as a {@link Character} object.</li>
* <li><b>If the value is declared as a Geometry:</b> the geometry is formatted as a STC-S expression.</li>
* </ul>
@@ -703,9 +711,16 @@ public class ResultSetTableIterator implements TableIterator {