I can't find two methods from API that i reallyneed at the moment.<br>1.How can i get the number ofcolumns inside my java.sql.ResultSet object? I made myown method for that, but API method could be morenice.<br>2.How can i get each column name?
You'll need to use ResultSetMetaData to get thedetails of the results returned.<br>ResultSetrsSet;<br>ResultSetMetaData rsMeta = rsSet.getMetaData();<br><br>This willallow you to get rows, column names, etc.