Many to Many DataSet Insert to Database using Stored Procedures
Posted
by Jonn
on Stack Overflow
See other posts from Stack Overflow
or by Jonn
Published on 2010-05-26T07:32:01Z
Indexed on
2010/05/26
7:51 UTC
Read the original article
Hit count: 288
stored-procedures
|datasets
I'm trying to do a many-to-many bulk insert to the database using a list of three different types of models. The only tools I can use are stored procedures and datasets. (But I can't use DataSet fills or DataAdapters, just plain ol' Stored Procedures). Is there an easy way to pass multiple values, let alone, pass three different lists and bulk insert them to a table in the database using stored procedures?
(As specified in the title, the three tables are actually two tables and a third table to establish the many-to-many relationship between the two.)
© Stack Overflow or respective owner