Re: [sqlite] Copying a DB file that is being in use

2012-12-06 Thread Yongil Jang
How about to use sqlite backup apis? These are designed to copy database file without locking on source file. AFAIK, it restart backup progress when source file is changed. 2012. 12. 7. 오전 4:30에 "romtek" 님이 작성: > Hi, > > A recent discussion of a reader/writer problematic situation has > prompted

[sqlite] Copying a DB file that is being in use

2012-12-06 Thread romtek
Hi, A recent discussion of a reader/writer problematic situation has prompted me to ask the following question. While the database file is being written to, the data isn't ready to be used by readers, so that DB is locked. What happens if I initiate copying of this file (e.g., to back it up)? Is