Operator On The Wire
Join
← Back to Knowledge Base
RED TEAM / SQL / SQLITE / ENUMERATION

Server Context

-- SQLite version
SELECT sqlite_version();

-- Check compile options
SELECT sqlite_compileoption_used('ENABLE_LOAD_EXTENSION');
SELECT sqlite_compileoption_used('OMIT_LOAD_EXTENSION');

-- List all compile options
PRAGMA compile_options;