Sedillo, Derek (Mission Systems) wrote:
Iterate an array of 1000 records and create a VALUES clause string to look like: /String records = "(1,1,1), (2,2,2), (3,3,3), (4,4,4), …(1000, 1000, 1000)";/
You might already know, but make sure to use a StringBuffer when you are doing this so you avoid creating a new String object for every triplet you append.
-- Øystein
