"Roger Binns" <[EMAIL PROTECTED]> wrote: > > It may be worth considering a solution for all operating > systems. I don't know if anyone has tracked how well > Spotlight (Mac) or Beagle (Linux) work with SQLite files. >
The problem seem to be two-fold: * Attempting to delete journal files that some other process has open * Attempting to create a new journal file too quickly after deleting a prior journal file with the same name. Linux and Mac have no issues with the above. The unlink() system call lets you delete files that another process has open. And there is no such thing as a "pending delete" error in Unix. So unless somebody has evidence to the contrary, I am going to assume this is a windows-only problem. -- D. Richard Hipp <[EMAIL PROTECTED]>