PB 日期查询
数据库是sql数据库的,我下面的代码怎么不能实现按日期查询呢
dw_1.settransobject(sqlca)
int result
date start_date
date end_date
start_date=date(em_1.text)
end_date=date(em_2.text)
dw_1.setfilter("birthday>='"+string(start_date)+"' and birthday<='"+string(end_date)+"'")
dw_1.retrieve()
result=dw_1.retrieve()
if result=0 then
messagebox("提示!","在此范围内,查不到相关符合记录!")
end if
运行的时候提示 Type of expressions must match
就是dw_1.setfilter("birthday>='"+string(start_date)+"' and birthday<='"+string(end_date)+"'")
这句出现问题了。