RaghavendraK 70574
<[EMAIL PROTECTED]> wrote:
If the sqlite file is deleted at runtime and if there are any open
connections,can these connections detect and return error?

On Windows, you simply cannot delete a file that is open by somebody else. DeleteFile call returns an error.

On Linux, you can "delete" (technically, unlink) a file in this situation, but it won't be really deleted until all handles on it are closed. So any already open connections will continue to work with the file.

Igor Tandetnik

-----------------------------------------------------------------------------
To unsubscribe, send email to [EMAIL PROTECTED]
-----------------------------------------------------------------------------

Reply via email to