Problems with disconnected recordsets i Yukon
We have a VB6 application using
We use disconnected recordset to load data to client-side. The client does updates in the recordset and then sends it back to server-side component that converts the recordset into SQL to update the database. No problems in SQL 2000 but on
Error: -2147217887 Multiple-step operation generated errors. Check each status value.
Error only occurs on recordsets which obviously won't work it was a connected recordset; for example a UNION sql.
Is this the way
One thing that would work is to create a recordset from scratch based on the loaded recordset and copy all data into this new recordset. But it seems like a lot of work doing this each time.

