如何在java中使用H2数据库的全文检索功能?
请任何人解释一下如何在java程序的帮助下使用H2嵌入式数据库的全文搜索。
执行“SELECT * FROM FT_SEARCH_DATA('word', 0, 0)”将返回一个选择查询字符串。我是否需要再次执行此操作才能获得最终结果?
Anybody please explain how to use the Full-Text search for H2 Embedded Database with the help of java program.
executing "SELECT * FROM FT_SEARCH_DATA('word', 0, 0)" is returning a select query string. Do i need to execute this one again to get the final result?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用 H2 全文索引的 Java 程序是 单元测试程序。那里的一个例子:
还有一个 SQL 脚本示例。也许您对 FullText 类的 Javadocs 感兴趣 - 这将解释
FT_SEARCH_DATA
/searchData
返回的内容。A Java program that uses the H2 fulltext index is the unit test program. An example from there:
There is also a SQL script example. And maybe your are interested in the Javadocs for the FullText class - this will explain what
FT_SEARCH_DATA
/searchData
returns.