executeBatch executes all batched SQL statements at once.
The executeBatch method is called to run all the SQL statements added to the batch. This reduces the number of execute calls, improving performance. For example, after adding multiple insert statements using addBatch, call executeBatch to run them together.