譬如:
1、我在窗口open事件里写的代码
//profile
sqlca.dbms="odbc"
sqlca.dbparm="connectstring='dsn=xscj;uid=dba;pwd=sql'"
connect;
if sqlca.sqlcode<>0 then
messagebox("Login","数据库连接错误,请重新输入!")
end if
dw_1.dataobject="d_free"
dw_1.settransobject(sqlca)
dw_1.retrieve()
timer(1,this)
2、在窗口timer的事件
string tj1,tj
tj=trim(sle_1.text)
tj1="(姓名 like '"+tj+"%')"
dw_1.setfilter(tj1)
dw_1.filter()
只能对姓名这一条字段实时查询,我想同时对学号或多字段进行查询,该如何写代码??
------解决方案--------------------
tj1="(姓名 like '"+tj+"%') or (学号 like '"+tj+"%')"