-
A.
Update()
-
B.
doUpdate()
-
C.
update_recordSet
-
D.
insert_recordSet
Correct Option: CExplanation:
- A. Incorrect: The update method does not update multiple records without making multiple calls to the database.
- B. Incorrect: The doUpdate method does not update multiple records without making multiple calls to the database.
- C. Correct: The update_recordSet method updates multiple records with one call to the database and is the best method to use.
- D. Incorrect: The insert_recordSet method will create new records, not update existing records.
Related Topic: Performance Optimization