How do you get values from ResultSet?
How do you get values from ResultSet? The ResultSet interface declares getter methods (for example, getBoolean and getLong ) for retrieving column values from the current row. You can retrieve values using either the index number of the column or the alias or name of the column. The column index Read more…