为什么表是副本类型时代码可以执行,但表是sqlquery时全是空表?
Dim a As String = e.Form.Controls("搜索1").Text
Dim b As String = e.Form.Controls("搜索2").Text
Dim c As String = e.Form.Controls("搜索3").Text
Dim tbl As Table = Tables("车辆查询_Table1")
a = "'%" & a & "%'"
b = "'%" & b & "%'"
c = "'%" & c & "%'"
tbl.Filter = "始发地 Like " & a & " and 目的地 Like " & b & " and 车牌 Like " & c & ""