Multiple choice technology programming languages

You would like to modify your form so it uses array processing to send DML statements to the server in batches of 50. How would you do this?

  1. Set the canvas's DML Array Size property to 50.

  2. Set the data block's DML Array Size property to 50.

  3. Set the window's DML Array Size property to 50.

  4. Array processing is limited to 25 records per batch.

Reveal answer Fill a bubble to check yourself
B Correct answer
Explanation

The DML Array Size property exists at the data block level, not canvas or window level. Setting it to 50 enables array processing with batches of 50 records for improved performance during DML operations.