diff options
author | drh <drh@noemail.net> | 2014-12-04 15:02:03 +0000 |
---|---|---|
committer | drh <drh@noemail.net> | 2014-12-04 15:02:03 +0000 |
commit | d8922052b27a3d2d62ccf3cf0ef1ea9b7272124d (patch) | |
tree | 3f476182c0b161882655b3d13721cbd51b3a0aaa /src | |
parent | 063970a15f317e156d4e2ee59059502fa326ee3b (diff) | |
download | sqlite-d8922052b27a3d2d62ccf3cf0ef1ea9b7272124d.tar.gz sqlite-d8922052b27a3d2d62ccf3cf0ef1ea9b7272124d.zip |
Clarification of the meaning of the second parameter to the busy-handler
callback. No changes to code.
FossilOrigin-Name: 1e2bc484f8e7766a493bfeab04d82e50f37217b8
Diffstat (limited to 'src')
-rw-r--r-- | src/sqlite.h.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/sqlite.h.in b/src/sqlite.h.in index e6470042b..e889b2670 100644 --- a/src/sqlite.h.in +++ b/src/sqlite.h.in @@ -2064,7 +2064,7 @@ int sqlite3_complete16(const void *sql); ** ^The first argument to the busy handler is a copy of the void* pointer which ** is the third argument to sqlite3_busy_handler(). ^The second argument to ** the busy handler callback is the number of times that the busy handler has -** been invoked for the same locking event. ^If the +** been invoked previously for the same locking event. ^If the ** busy callback returns 0, then no additional attempts are made to ** access the database and [SQLITE_BUSY] is returned ** to the application. |