in reply to Re^2: Changing foreach loop for a while loop
in thread Changing foreach loop for a while loop

If your array is huge, the SQL processor may not take that many values in an IN list, in which case you need to break up your array into acceptable-sized pieces.

Caution: Contents may have been coded under pressure.
  • Comment on Re^3: Changing foreach loop for a while loop

Replies are listed 'Best First'.
Re^4: Changing foreach loop for a while loop
by Anonymous Monk on Dec 30, 2004 at 16:55 UTC
    If you array is huge, you could also create a temporary table, put the values into the temporary table, and perform a join.