sqliteCompileOptionGet

Retrieves a single compile-time option used to build the underlying SQLite library. This function corresponds to the sqlite_compileoption_get(N) SQL function.

It allows iterating through all the compile-time options by providing an index N. The first option is at index 0. If the index is out of bounds, the function returns null.

Return

A String containing the name of the compile-time option (e.g., "ENABLE_FTS5"), or null if the index is out of range.

Author

MOHAMMAD AZIM ANSARI

Parameters

index

The zero-based index of the compile-time option to retrieve.

See also