1.

How can you view a result set?

Answer»

ResultSet interface contains get methods for each of the possible data types, and each get method has two versions

  • One that takes in a column name.

  • One that takes in a column index.

For e.g. getInt(String columnName), getInt(int columnIndex)



Discussion

No Comment Found