diff options
author | drh <> | 2025-01-31 01:34:19 +0000 |
---|---|---|
committer | drh <> | 2025-01-31 01:34:19 +0000 |
commit | e16b3452435dd03dbae8f355feeb33385780af3d (patch) | |
tree | 361515759a6d50c375aefc5d6a608eac844f23ed /src/sqliteInt.h | |
parent | 0911f86abf39bfaf0f3b144f07860238baf6a483 (diff) | |
download | sqlite-e16b3452435dd03dbae8f355feeb33385780af3d.tar.gz sqlite-e16b3452435dd03dbae8f355feeb33385780af3d.zip |
Add the SQLITE_DBCONFIG_ENABLE_COMMENTS setting (default on) to enable or
disable the ability to include comments in SQL input text.
FossilOrigin-Name: 393749a2e22d5c8eba36e2106a35909420aa6316652d1ab4f18ef699247b6fba
Diffstat (limited to 'src/sqliteInt.h')
-rw-r--r-- | src/sqliteInt.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/sqliteInt.h b/src/sqliteInt.h index 8c1be72c1..a37e0523a 100644 --- a/src/sqliteInt.h +++ b/src/sqliteInt.h @@ -1836,6 +1836,7 @@ struct sqlite3 { #define SQLITE_FkNoAction HI(0x00008) /* Treat all FK as NO ACTION */ #define SQLITE_AttachCreate HI(0x00010) /* ATTACH allowed to create new dbs */ #define SQLITE_AttachWrite HI(0x00020) /* ATTACH allowed to open for write */ +#define SQLITE_Comments HI(0x00040) /* Enable SQL comments */ /* Flags used only if debugging */ #ifdef SQLITE_DEBUG |