在 sqlite 数据库上实现全文搜索的最有效方法是什么
我正在使用 sqlite 数据库来存储数据。其中一个表包含名称、摘要、描述、位置等字段。我想在此表上实现全文搜索,即我想在表的所有列中搜索给定的单词。最好的方法是什么?我的项目中有对 sqlite.data.dll 的引用。
I am using sqlite database for storing data. One of the table contains fields like name, summary, description, location etc. I want to implement full text search on this table i.e. I want to search the given word in all columns of the table. What is the best way to do this? I have a reference to sqlite.data.dll in my project.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用 SQLite FTS3 和 FTS4 扩展?请参阅此处:SQLite FTS3 和 FTS4 扩展
Use SQLite FTS3 and FTS4 Extensions ? see here: SQLite FTS3 and FTS4 Extensions