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.
I have a similar problem, did you find any solution to this? I've tried all ADO recordset properties, but I can't find anything.
I saved ADO recordset to XML from SQL 2000 and SQL 2005. There was one difference that is propably the cause. XML from SQL 2005 was missing rs:writeunknown property from attributes. I just don't want to create a recordset first and copy data from original recordset or save the recordset to xml and modify it.
|||Unfortunately I never found any better solution than the one I described.
No comments:
Post a Comment