FTS 在 SQLite 的 iOS 版本中可用吗?

发布于 2024-11-06 10:01:08 字数 83 浏览 0 评论 0原文

我对使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

ぇ气 2024-11-13 10:01:08

它在 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文