1. In the JDBC API version 2.0 the ResultSet object can be used to UPDATE a
data value in the database.
Which of these describes how this is done?
A Use the updateXXX() methods to change the value of a given column.
B Use the getXXX() methods from the ResultSet class to get the row that
requires updating and create a new SQL UPDATE statement to perform
the update.
C Use the updateXXX() method to perform the update passing it the row
that requires updating.
D Use the updateXXX() method to perform