Class: SQLite::Exceptions::BusyException

Inherits:
Object
  • Object
show all
Defined in:
ext/sqlite-api.c

Overview

From the SQLite documentation:

“This return code indicates that another program or thread has the database locked. SQLite allows two or more threads to read the database at the same time, but only one thread can have the database open for writing at the same time. Locking in SQLite is on the entire database.”