Sqlite3 dylib RTREE and FTS

Hi - I can't seem to find anywhere to see what features the iOS sqlite3 dylib has enabled.


I'm after RTREE and FTS3 / FTS4


Do I need to include my own sqlite3.c amalgamation file with these enabled, or can I link to the system dylib and expect these things to work?

Replies

I can't seem to find anywhere to see what features the iOS sqlite3 dylib has enabled.

What does

sqlite3_compileoption_used
report?

Share and Enjoy

Quinn “The Eskimo!”
Apple Developer Relations, Developer Technical Support, Core OS/Hardware

let myEmail = "eskimo" + "1" + "@apple.com"

Thanks


    int x = sqlite3_compileoption_used("SQLITE_ENABLE_RTREE");
    int y = sqlite3_compileoption_used("SQLITE_ENABLE_FTS3");

x=1 and y=1, so it looks like they are included. That's XCode8, iOS10.