diff options
author | drh <drh@noemail.net> | 2010-12-07 23:24:00 +0000 |
---|---|---|
committer | drh <drh@noemail.net> | 2010-12-07 23:24:00 +0000 |
commit | 91412b244678dd680314e44d11237fb744f3fef0 (patch) | |
tree | 73e2f1c9a3dae52e069fe505dce700af90d1faa6 /src | |
parent | 5480617fb14c2f5151c716b3a89feec1d38c1b85 (diff) | |
download | sqlite-91412b244678dd680314e44d11237fb744f3fef0.tar.gz sqlite-91412b244678dd680314e44d11237fb744f3fef0.zip |
Improved documentation for SQLITE_FCNTL_FILE_POINTER.
FossilOrigin-Name: 43935548ae79d4d1a71549820a77368cda77104a
Diffstat (limited to 'src')
-rw-r--r-- | src/sqlite.h.in | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/sqlite.h.in b/src/sqlite.h.in index 240a3bab2..7c259c867 100644 --- a/src/sqlite.h.in +++ b/src/sqlite.h.in @@ -710,6 +710,11 @@ struct sqlite3_io_methods { ** for the nominated database. Allocating database file space in large ** chunks (say 1MB at a time), may reduce file-system fragmentation and ** improve performance on some systems. +** +** The [SQLITE_FCNTL_FILE_POINTER] opcode is used to obtain a pointer +** to the [sqlite3_file] object associated with a particular database +** connection. See the [sqlite3_file_control()] documentation for +** additional information. */ #define SQLITE_FCNTL_LOCKSTATE 1 #define SQLITE_GET_LOCKPROXYFILE 2 |