在vb6中使用ADODB.Recordset查找字段的一部分

发布于 2024-10-07 01:12:41 字数 249 浏览 8 评论 0原文

我在 mdb 中有一个带有字段地址的表,其中包含街道地址等字符串。 我希望能够搜索该记录的部分内容。

 sCriteria = "address like " & "'" & streetAddr & "'"

   Rs1.Filter = sCriteria

它搜索例如“Mall”,而有一条记录“Mall Road”应该已找到,但由于道路丢失而没有找到,我应该做什么才能使部分字段可搜索

I have a table in mdb with field address, which will contain street address e.t.c as string.
I want to be able to search part of this record.

 sCriteria = "address like " & "'" & streetAddr & "'"

   Rs1.Filter = sCriteria

it searches for e.g "Mall" while there is a record "Mall Road" which should have been found but is not as Road is missing, what should i do to make part of field searchable

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

老子叫无熙 2024-10-14 01:12:41

尝试

sCriteria = "address like '*" & Quote(streetAddr) & "*'"

Quote 执行简单的 Replace(sText, "'", "''")

Try

sCriteria = "address like '*" & Quote(streetAddr) & "*'"

where Quote does a simple Replace(sText, "'", "''")

-黛色若梦 2024-10-14 01:12:41

在过滤器值之后、右单引号之前放置一个“*”。

Put an '*' before the closing single-quote, after the filter value.

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