Hello!
I've already searched the forum but didn't find an answer to the following.
The system I'm working on includes some datasource that produces records which have to be transferred to a MS Access Database (append to a table). To make sure that none of these records get lost if the database is too busy, i would like to pass them through a "safe" FIFO: the producer-thread puts the record into the fifo, then a consumer thread fetches them out of the fifo and puts them into the DB.
In case of a system crash (producer, consumer, both, ... however), it must be guaranteed, that no records in the FIFO get lost! I remember that in Linux there were file-based FIFOs called "Pipes". Is there something similar in Win32/VC++?
Any help will be appreciated!
