aboutsummaryrefslogtreecommitdiff
path: root/src/sqliteInt.h
diff options
context:
space:
mode:
authordrh <drh@noemail.net>2009-11-25 18:03:42 +0000
committerdrh <drh@noemail.net>2009-11-25 18:03:42 +0000
commitc7bc4fde3c5ed76ec4dae4e5f5f1be8e8901703d (patch)
tree0b0ccc697aa7485bccbb3ca69f4004ce18e81d51 /src/sqliteInt.h
parent8965b50edffbad6b62dbc65b6a04830f9d5b9548 (diff)
downloadsqlite-c7bc4fde3c5ed76ec4dae4e5f5f1be8e8901703d.tar.gz
sqlite-c7bc4fde3c5ed76ec4dae4e5f5f1be8e8901703d.zip
Initial check-in of code that inserts tokenizations of the values
for bound parameters into the output of sqlite3_trace(). FossilOrigin-Name: 545cfb3b63f482036ae152e6ebcce86d373585a8
Diffstat (limited to 'src/sqliteInt.h')
-rw-r--r--src/sqliteInt.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/sqliteInt.h b/src/sqliteInt.h
index a3980a071..3adba1c62 100644
--- a/src/sqliteInt.h
+++ b/src/sqliteInt.h
@@ -2517,6 +2517,9 @@ void sqlite3StatusSet(int, int);
int sqlite3IsNaN(double);
void sqlite3VXPrintf(StrAccum*, int, const char*, va_list);
+#ifndef SQLITE_OMIT_TRACE
+void sqlite3XPrintf(StrAccum*, const char*, ...);
+#endif
char *sqlite3MPrintf(sqlite3*,const char*, ...);
char *sqlite3VMPrintf(sqlite3*,const char*, va_list);
char *sqlite3MAppendf(sqlite3*,char*,const char*,...);