i want to run the same query ten times.
INSERT INTO items VALUES ('item_name')
GO 10
i can use GO , but i want to do this from my .net winform application. when the user clicks a button then the query gets executed and inserts 10 rows into the table ITEMS. whats the solution for this ?