Albert Banaszkiewicz wrote: > 1. Is there a way to control (i.e. disable) check-pointing happening at DB > closure ?
The internal sqlite3WalClose() function does a checkpoint if it is able to get an exclusive lock (which implies that there are no other readers/ writers). So to prevent this checkpoint, you would have to keep some other connection with an active transaction (read-only suffices) while you're closing the first connection. And then never close that other connection ... Regards, Clemens