Update SQL Server/Table with RecordSet [VB6]
Given that I know how to generate a Recordset from an SQL Query (for example, I am able to do a Select * FROM Table and return that information in a recordset).
Question is can we do something similar for the other way? Meaning can we take a Recordset and insert it into an SQL Table in a similar way?
See, my problem is I need to import information into the SQL Table, my only options are a) inserting each row by row into the SQL Table or b) generate a Recordset with all my rows and sending the entire thing (in one shot) to the SQL Table.
Can this be done?
If so anyone able to provide an example/sample?
Thanks,