📜  sqlite_busy:数据库被锁定 - SQL 代码示例

📅  最后修改于: 2022-03-11 15:05:14.279000             🧑  作者: Mango

代码示例1
SQLITE_BUSY means that another database connection (probably in another process) is using the database in a way that prevents you from using it. SQLITE_LOCKED means the source of contention is internal and comes from the same database connection that received the SQLITE_LOCKED error.