SQLiteDatabase.IsDbLockedByCurrentThread 属性

定义

如果当前线程与数据库保持活动连接,则返回 true。

public virtual bool IsDbLockedByCurrentThread { [Android.Runtime.Register("isDbLockedByCurrentThread", "()Z", "GetIsDbLockedByCurrentThreadHandler")] get; }
[<get: Android.Runtime.Register("isDbLockedByCurrentThread", "()Z", "GetIsDbLockedByCurrentThreadHandler")>]
member this.IsDbLockedByCurrentThread : bool

属性值

如此 如果当前线程持有与数据库的活动连接。

属性

注解

如果当前线程与数据库保持活动连接,则返回 true。

此方法的名称来自与数据库建立活动连接意味着线程在数据库上持有实际锁的时间。 如今,不再存在真正的“数据库锁”,尽管如果线程无法获取数据库连接来执行特定操作,则可能会阻止这些线程。

适用于 . 的 android.database.sqlite.SQLiteDatabase.isDbLockedByCurrentThread()Java 文档

本页的某些部分是根据 Android 开放源代码项目创建和共享的工作进行的修改,并根据 Creative Commons 2.5 属性许可证中所述的术语使用。

适用于