-
[2005] [array list]
Hi friends,
i have stored some values in arrarylist .. i want to insert the each values to my table in sql server database in row wise.. how to pass the array list to storedprocedure and how to get the count of arraylist in stored procedure.. plz help me ..
-
Re: [2005] [array list]
SQL commands, SQL connections, Select statements.
Do you have any code right now? If so, please show us so we can help you get it in order.
-
Re: [2005] [array list]
Depending on your data integrity needs, you could execute one insert statement for each item in the Arraylist, or you could pass in a comma-separated list to your stored procedure which you then need to split.
Which one?