在VFP中,怎么把这个动态查询条件到SQL2000执行
在VFP中,怎么把这个动态查询条件到SQL2000执行啊。。bh1=allt(thisform.text1.value)
sex1=allt(thisform.text2.value)
cwhere=''
if not empty(bh1)
cwhere=iif(empty(cwhere),'bh=?bh1','bh=?bh1'+' and '+cwhere)
endif
if not empty(sex1)
cwhere=iif(empty(cwhere),'sex=?sex1','sex=?sex1'+' and '+cwhere)
endif
**不知道是不这样
TEXT TO sql_str NOSHOW
SELECT BH ,XM,SEX,
FROM sql_dbf
where ---这理这么写啊?如果不用参数,直接写 where bh=?bh1 and sex=?sex1,是可以查到数据
ORDER BY bh
ENDTEXT
SQLEXEC(nhandle,sql_str,'sql_dbf')
求完善。。