The simplest answer is to call one insert for each value. I don't believe that there is a way to insert more than one table row at a time. I think that you would find that even if you used a .NET dataset class and added many rows, that ultimately the underlying logic will also simply execute many individual inserts.
-
Peter