K
Kamal Vaghjiani
Using oleDBDataAdapter I want to loop through a recordset and generate
automatically a list of SQL insert/update statements.
i.e.
Update table set field1="test1" where id=1;
Update table set field1="test2" where id=2;
etc.....
How can this be done using the adapter, instead of manually generating each
statement via code.
KV
automatically a list of SQL insert/update statements.
i.e.
Update table set field1="test1" where id=1;
Update table set field1="test2" where id=2;
etc.....
How can this be done using the adapter, instead of manually generating each
statement via code.
KV