Lines Matching refs:lock
38 # 1.2.1: If [db1] has an exclusive lock, [db2] cannot read.
39 # 1.2.2: If [db1] has an exclusive lock, [db1] can read.
40 # 1.2.3: If [db1] has a non-exclusive write-lock, [db2] can read.
64 # 1.3.1: If [db1] has a write-lock on t1, [db1] can read from t1.
65 # 1.3.2: If [db1] has a write-lock on t1, [db2] can read from t2.
66 # 1.3.3: If [db1] has a write-lock on t1, [db2] cannot read from t1.
67 # 1.3.4: If [db1] has a write-lock on t1, [db2] cannot write to t1.
68 # 1.3.5: If [db1] has a read-lock on t1, [db2] can read from t1.
69 # 1.3.6: If [db1] has a read-lock on t1, [db2] cannot write to t1.
106 # 1.4.1: If [db1] has a write-lock on t1, [db2] can still read from t1.
107 # 1.4.2: If [db1] has a write-lock on the db schema (sqlite_master table),
109 # 1.4.3: If [db1] has a read-lock on t1, [db2] cannot write to t1.
182 # already holding a read-lock on the database file. And that it is
183 # not possible if some other connection holds such a lock.
191 # Within this block [db1] is holding a read-lock on t1. Test that