Visual Basic 6 ADO Update question...

Posted by Dave on Stack Overflow See other posts from Stack Overflow or by Dave
Published on 2010-05-31T15:15:50Z Indexed on 2010/05/31 15:43 UTC
Read the original article Hit count: 241

Hi,

I've been working with a Legacy application which interacts with a database through ADODB, and most of the changes to records follow a fairly straightforward pattern of:

  1. Create a Recordset from a query
  2. Make various change to the recordset
  3. call .Update on the recordset.

What I'm wondering is, with ADODB recordsets, is there anyway to extract the 'changes'. The logic which changes the recordset is scattered about, and all I need is the changes, not how it was changed...

Any suggestions for tracking changes in a recordset (in code, a trigger on the DB or similar is no use here)

Thanks in advance

© Stack Overflow or respective owner

Related posts about database

Related posts about visual-basic