FTS 在 SQLite 的 iOS 版本中可用吗?
我对使用 SQLite 的全文搜索功能感兴趣。
据我所知,它没有编译到 iPhone/iOS 版本中。
现在还是这样吗?
I am interested in using the full text search capability of SQLite.
I understand it was not compiled in to the iPhone/iOS version.
Is this still the case?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
它在 iOS 上的 sqlite3 标准版本中不可用,但您仍然可以使用它。
使用它的最佳方法是下载 sqlite3 合并并针对 FTS3 配置它。将 sqlite3.c 和 sqlite3.h 文件添加到您的项目中,并从应用程序的框架列表中删除 sqlite3。
以这种方式静态添加它将会完美地工作。
It is not available in the standard build of sqlite3 on iOS But you can still use it.
The best way to use it is to download the sqlite3 amalgamation and configure it for FTS3. Add the sqlite3.c and sqlite3.h file to your project and remove sqlite3 from your frameworks list on your application.
Statically adding it this way will work perfectly.