当前位置:编程学习 > VB >>

数据库连接VB时按某种条件查询时,只显示列名没有数据

Private Sub Command3_Click()

Adodc1.RecordSource = "select * from 员工信息表 where 员工ID ='" & Text1.Text & "'"
Adodc1.Refresh

End Sub



--------------------编程问答-------------------- 如果语句没有报错,那应该是输入的内容不符合条件,在输入框中取掉前后空格再试试:
Adodc1.RecordSource = "select * from 员工信息表 where 员工ID ='" & trim(Text1.Text) & "'"
补充:VB ,  非技术类
CopyRight © 2022 站长资源库 编程知识问答 zzzyk.com All Rights Reserved
部分文章来自网络,