Which of the following methods is the most efficient. I have a program written that inserts values into a database. I have about 200 values that I have to insert into a table in a database
1. Load each value into a variable and insert them all at one time with one SQL call
2. Insert each one individually making about 200 individual SQL calls. Which one would work best? THanks in advance for any advice
1. Load each value into a variable and insert them all at one time with one SQL call
2. Insert each one individually making about 200 individual SQL calls. Which one would work best? THanks in advance for any advice