在我的 Access db 表中,我有一cmt_data
列包含一个字符串。例如:
Check in the packet TM(12,9) MRSS0319 'Monitoring List Report'.
我也有List<String>
诸如 , 等的项目MRSS0319
。TRPP3006
我要做的是在 myList<String>
和 table 列之间执行子字符串匹配,但我不太清楚 Jackcess 提供的示例是如何简单的。我在这里找到的一个例子显示:
Column col = table.getColumn("town");
cursor.beforeFirst();
while(cursor.moveToNextRow()) {
if(cursor.currentRowMatches(columnPattern, valuePattern)) {
// handle matching row here
}
}
该方法cursor.currentRowMatches(columnPattern, valuePattern)
看起来可能有用的地方。但是根据文档,该方法似乎只执行字符串相等匹配,所以现在我有点走投无路了。
感谢你的帮助。