A colleague of mine pulled some code from the web that does something like the following:
ResultSetMetaData rsmd = rs.getMetaData();
while (rs.next()) {
count = rsmd.getColumnCount();
validateSame(firstRowCount, count);
}
This implies that the RSMD is maintaining an internal reference to the ResultSet and the column count could vary by row.
It seems intuitive to me that there would be one set of metadata per RS, and I'd like to refactor this code out, but I haven't been able to verify this in the Java documentation or get at it through Google searches. Could someone please confirm or deny that the metadata is constant?
getColumnCount()is a method ofResultSetMetaData. I do not have a formal document, but as far as I know yes, it is safe to retrieve metadata only once, when you start processing a result set. – mazaneicha Jan 20 at 19:49