aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authordrh <>2023-05-31 12:42:09 +0000
committerdrh <>2023-05-31 12:42:09 +0000
commitd3b54d624ff57b941ec5f27abe1c233b618b244b (patch)
tree6c8b1e2318e00f0dd6263f14981d2317375a9867 /src
parentd8091fe9797da031fcd3722d030495d65d8838a9 (diff)
downloadsqlite-d3b54d624ff57b941ec5f27abe1c233b618b244b.tar.gz
sqlite-d3b54d624ff57b941ec5f27abe1c233b618b244b.zip
Minor enhancement to the sqlite3_trace_v2() documentation. No code
changes. FossilOrigin-Name: fba97230e38276f2a02fc24353c3d911dfa24f3a4f75f691de9461d4daf3ae54
Diffstat (limited to 'src')
-rw-r--r--src/sqlite.h.in6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/sqlite.h.in b/src/sqlite.h.in
index 5634e6a29..d39b3de61 100644
--- a/src/sqlite.h.in
+++ b/src/sqlite.h.in
@@ -3388,8 +3388,10 @@ SQLITE_DEPRECATED void *sqlite3_profile(sqlite3*,
** M argument should be the bitwise OR-ed combination of
** zero or more [SQLITE_TRACE] constants.
**
-** ^Each call to either sqlite3_trace() or sqlite3_trace_v2() overrides
-** (cancels) any prior calls to sqlite3_trace() or sqlite3_trace_v2().
+** ^Each call to either sqlite3_trace(D,X,P) or sqlite3_trace_v2(D,M,X,P)
+** overrides (cancels) all prior calls to sqlite3_trace(D,X,P) or
+** sqlite3_trace_v2(D,M,X,P) for the [database connection] D. Each
+** database connection may have at most one trace callback.
**
** ^The X callback is invoked whenever any of the events identified by
** mask M occur. ^The integer return value from the callback is currently