State true or false :- ResultSet.CONCUR_UPDATABLE used with the result set is used to update the rows directly in the database.

A) True
B) False
Explanation: This is the new feature in the JDBC 2.0 API usage is Statement stmt = con.createStatement(ResultSet.TYPE_SCROLL_SENSITIVE, ResultSet.CONCUR_UPDATABLE);

Showing Answers 1 - 3 of 3 Answers

anitpatel

  • Nov 6th, 2009
 

True. One has to call insertRow() programmatically to get the resultset data changes reflected in database. The CONCUR_UPDATABLE implementation can be driver specific. If driver does not support this mode of update, it will not allow the resultset update.

  Was this answer useful?  Yes

Give your answer:

If you think the above answer is not correct, Please select a reason and add your answer below.

 

Related Answered Questions

 

Related Open Questions