Indeed. The app will copy rows from data source (source) to data source (target) and there can be millions of rows in a table(s).
Using a parameter marker (odbcparameter), I should be able to:
prepare the SQL statement
Load the odbcparameter collection (opc) from the source (a parameter for each datacolumn)
Transfer the opc to the target adapter.
Executenonquery to load the data.
I hope to perform the function without transferring the opc (iteratively for each column) to the target before I execute ExecuteNonQuery.
Ideally, it would be preferred to populate the opc on the source and update the target dataadapter by reference with the source's parameter collection.
Main Topics
Browse All Topics





by: TheLearnedOnePosted on 2009-05-29 at 13:14:43ID: 24505821
I am confused about " I would think populating the source adapter's ODBCParameterCollection once for each row". Are you saying that parameters would change for each row?