c - How do you add a SQLite3 created function to an iOS 9 project? -
i trying build simple sqlite full text search (fts4) ios 9/xcode 7 project w/ swift 2.2. accessing sqlite3 c api directly swift, see no need use bloated wrapper library. have full text search working perfectly. need create ranking function results. have c code ranking function, problem have no idea how to:
- get c source or compiled executable of ranking function code compiled ios project.
- create or load ranking function within sqlite (sqlite3_create_function)
- have sqlite recognize created function
so basically, have c source code of ranking function , have failed @ every attempt sqlite recognize function.
thanks help.
Comments
Post a Comment