Hi, I use the following code to create backup of an sqlite3 database.
"BEGIN IMMEDIATE" copyDbFile(); "COMMIT" Is it safe to remove the explicit transaction here (Begin immediate) if I only have one process accessing this db? Or should I always use Begin Immediate before coping the file?