in reply to Re^2: DBD::SQLite "file is encrypted or is not a database" in running application
in thread [SOLVED]: DBD::SQLite "file is encrypted or is not a database" in running application

You might find this of interest: SQLite Locking.

SQLite has a robust locking mechanism. For a write, a connection has to acquire an exclusive lock on the DB. This can significantly affect the performance in multi-writer situations. Any failure in the locking mechanism would be a high priority bug.

  • Comment on Re^3: DBD::SQLite "file is encrypted or is not a database" in running application