Table of Contents

Sqlite - (Compile) Options

About

Options in Sqlite permits to see which feature is enabled or not.

The options are dependent:

How to list the options

From the cli

From the cli with the pragma command

./sqlite3
PRAGMA compile_options;

From SQL

From any sql client with the sql version of the pragma command

select * from pragma_compile_options() where compile_options = 'xxxx';

For instance for json

select * from pragma_compile_options() where compile_options = 'ENABLE_JSON1';