InterviewSolution
Saved Bookmarks
| 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
For e.g. getInt(String columnName), getInt(int columnIndex) |
|