一个变量查询问题?
在使用一个长整型变量进行查询时报错类型不匹配
Private Sub Command1_Click()
Dim x As Long
x = 80
Adodc1.RecordSource = "select 姓名 from 成绩表 where 课程成绩='" + x + "'"
Adodc1.Refresh: Set MSHF1.DataSource = Adodc1
End Sub
不知道错在什么地方???
在使用一个长整型变量进行查询时报错类型不匹配
Private Sub Command1_Click()
Dim x As Long
x = 80
Adodc1.RecordSource = "select 姓名 from 成绩表 where 课程成绩='" + x + "'"
Adodc1.Refresh: Set MSHF1.DataSource = Adodc1
End Sub
不知道错在什么地方???
这两条我都测试通过 你再查其他的 vb里的SQL语句都是string, 你定义为long 也白费
你用 string + long + string 当然类型不匹配, string & long & string 倒可以