diff options
author | drh <drh@noemail.net> | 2018-09-12 14:28:45 +0000 |
---|---|---|
committer | drh <drh@noemail.net> | 2018-09-12 14:28:45 +0000 |
commit | 83a9d14fcd80bdcf1ec48c2aaa1d0395d1a58675 (patch) | |
tree | 1eb61d10b40be5487ee98c00574436154d32745c /src | |
parent | e8ab40d219b453bf304a1f43b1c62f248a96e5f7 (diff) | |
download | sqlite-83a9d14fcd80bdcf1ec48c2aaa1d0395d1a58675.tar.gz sqlite-83a9d14fcd80bdcf1ec48c2aaa1d0395d1a58675.zip |
Improvements to the documentation for SQLITE_FCNTL_DATA_VERSION.
No changes to code.
FossilOrigin-Name: 27837624336d2883f721310bd4dceedb77085d1008af5e12557f634936d48b8c
Diffstat (limited to 'src')
-rw-r--r-- | src/sqlite.h.in | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/src/sqlite.h.in b/src/sqlite.h.in index 6a7c4f7e0..97ba31966 100644 --- a/src/sqlite.h.in +++ b/src/sqlite.h.in @@ -1082,18 +1082,19 @@ struct sqlite3_io_methods { ** The "data version" for the pager is written into the pointer. The ** "data version" changes whenever any change occurs to the corresponding ** database file, either through SQL statements on the same database -** connection, or through transactions committed by separate database +** connection or through transactions committed by separate database ** connections possibly in other processes. The [sqlite3_total_changes()] ** interface can be used to find if any database on the connection has changed, -** but that interface response to changes on TEMP as well as MAIN and does +** but that interface responds to changes on TEMP as well as MAIN and does ** not provide a mechanism to detect changes to MAIN only. Also, the -** [sqlite3_total_changes()] interface response to internal changes only and +** [sqlite3_total_changes()] interface responds to internal changes only and ** omits changes made by other database connections. The ** [PRAGMA data_version] command provide a mechanism to detect changes to ** a single attached database that occur due to other database connections, -** but omits changes implemented by the database connection for which it is +** but omits changes implemented by the database connection on which it is ** called. This file control is the only mechanism to detect changes that -** happen either internally or externally on a single database. +** happen either internally or externally and that are associated with +** a particular attached database. ** </ul> */ #define SQLITE_FCNTL_LOCKSTATE 1 |