当前位置: 代码迷 >> PB >> types of expressions must match异常
  详细解决方案

types of expressions must match异常

热度:284   发布时间:2016-04-29 06:52:18.0
types of expressions must match错误
本帖最后由 li6177 于 2013-03-22 00:42:00 编辑

代码:dw_1.setfilter('xf_id='+sle_1.text)
dw_1.filter()

都已经是字符窜类型了,还类型不匹配?!

------解决方案--------------------
String DWfilter 
DWfilter = "(xf_id = ~"" + sle_1.text + "~")"
dw_1.SetFilter(DWfilter)
dw_1.Filter()


------解决方案--------------------
dw_1.setfilter("xf_id='"+sle_1.text+"'")
dw_1.filter()
  相关解决方案