ADO question

  • Thread starter Thread starter Dorian
  • Start date Start date
D

Dorian

If I am writing to a recordset with ADO and I have done a rs.Addnew and then
do not want to write the record, do I just not do an rs.Update or do I have
to do something to flush the pending record before I do another rs.Addnew.
Currently, I just omit the rs.Update but I am still getting the records
added to my output table.
-- Dorian
"Give someone a fish and they eat for a day; teach someone to fish and they
eat for a lifetime".
 
Don't do a rs.Update until you have tested/validated the data and know you
want to add it.
Even if you don't do an update you've added the record but without values
 
Don't do a rs.Update until you have tested/validated the data and know you
want to add it.
Even if you don't do an update you've added the record but without values
 
Back
Top