Click to See Complete Forum and Search --> : ODBC and MS Access, force data to be written to the disk


A. Ostroverkhov
February 28th, 2003, 05:40 AM
Hi all!

It's an addition to the previous message.
I have a MS Access database, that is being used by application, written in VC++

M Owen
February 28th, 2003, 08:49 AM
What method are you using for your data access? And how are you writing the data? In VC++ I've not had any problem with caching problems ...

A. Ostroverkhov
February 28th, 2003, 09:14 AM
Originally posted by M Owen
What method are you using for your data access? And how are you writing the data? In VC++ I've not had any problem with caching problems ...

I use CRecordset class to access data, and write data, using methods ::AddNew and ::Update.

M Owen
February 28th, 2003, 12:00 PM
I see. Well I've never used those classes myself. I did it the hard way ...:D You might want to check in the VC++ forum for CRecordSet issues. I know there have been tons of posts.

antares686
February 28th, 2003, 04:28 PM
I personally skipped CRecordset objects and went straight for ADO with RecordsetPtr and I don't see that issue at all. You might try looking down that path.