VB 利用like进行模糊查询

VB 利用like进行模糊查询,第1张

'首先打开数据库并选Tools-Database

Utilities-Convert

Database-To

Access

2002-2003

file

Format.另存名称。

'实例:

Private

Sub

Form_Load()

Adodc1.ConnectionString

=

"Provider=Microsoft.Jet.OLEDB.4.0Persist

Security

Info=FalseData

Source="

&

App.Path

&

"\数据库名.mdb"

Adodc1.CommandType

=

adCmdText

Adodc1.RecordSource

=

"Select

*

From

资料表

where

字段

like'%"

&

Text1.Text

&

"%'"

Adodc1.Refresh

Set

DataGrid1.DataSource

=

Adodc1

DataGrid1.Refresh

End

Sub

SQL数据库:select * from 表名1 where 字段1 like '%a%'

ACCESS: select * from 表名1 where 字段1 like '*a*'


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/sjk/10700906.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2023-05-10
下一篇 2023-05-10

发表评论

登录后才能评论

评论列表(0条)

保存