以文本方式查看主题

-  Foxtable(狐表)  (http://foxtable.com/bbs/index.asp)
--  专家坐堂  (http://foxtable.com/bbs/list.asp?boardid=2)
----  SQLFind不能加条件么  (http://foxtable.com/bbs/dispbbs.asp?boardid=2&id=145611)

--  作者:baiyang
--  发布时间:2020/2/2 11:54:00
--  SQLFind不能加条件么

Dim dr As DataRow
dr = DataTables("商品记忆").SQLFind("商品全称=\'h\' where 公司全称=\'xxx\'")
If dr IsNot Nothing Then
    Output.Show("a")
Else
    Output.Show("b")
End If

一直显示B


--  作者:baiyang
--  发布时间:2020/2/2 13:51:00
--  

自己解决了

Dim dr As DataRow
dr = DataTables("商品记忆").SQLFind("商品全称=\'h\' and 公司全称=\'xxx\'")
If dr IsNot Nothing Then
    Output.Show("a")
Else
    Output.Show("b")
End If