SQLite Forum

Querying all compile options used
Login
See the [pragma list](https://sqlite.org/pragma.html). The form<code>
   PRAGMA something_or_other = value;
</code>is how available runtime options are set. There are numerous [compilation options](https://sqlite.org/compile.html), many of which result in such PRAGMAs being meaningful (or not.) If you wish to see the intersection of {pragma-settable options} and {compilation options that need runtime action to take effect}, those two links will provide the input sets. (I'm too lazy to perform that processing.)