Delete the parameter(s) in question using the "Delete" method of the
collection object.
The collection placeholder represents the collection from which you want to
delete an object. The Index argument is a string representing the name of
the object you want to delete.
The Index in the preceding syntax works only for named parameters; a numeric index does not work. In other words, you must name your parameter when you use CreateParameter to create the parameter.
If you use the DataCommand control in Visual InterDev to add the code
necessary to accomplish the stored procedure call, Visual InterDev inserts
code to re-create the Command object. This is a valid approach, but it does
add overhead of re-creating the object.