InterviewSolution
Saved Bookmarks
| 1. |
Which of the following is method of JDBC batch process?(a) setBatch()(b) deleteBatch()(c) removeBatch()(d) addBatch() |
|
Answer» The correct answer is (d) addBatch() To explain: addBatch() is a method of JDBC batch process. It is faster in processing than executing one statement at a time. |
|