pb日期时间检索
出现错误:expressionisnotvalid以下是我的代码:datetimeldt_begin,ldt_endldt_begin=datetime(date(yea...
出现错误:expression is not valid
以下是我的代码:
datetime ldt_begin,ldt_end
ldt_begin = datetime(date(year,month,day),time(00:00:00))
ldt_end = datetime(date(year,month,day),time(23:59:59))
messagebox("",string(ldt_begin))
dw_1.settransobject(sqlca)
dw_1.retrieve()
dw_1.setfilter("out_time>=ldt_begin and out_time<=ldt_end")
dw_1.filter()
帮我看看什么错误吧!高分重赏! 展开
以下是我的代码:
datetime ldt_begin,ldt_end
ldt_begin = datetime(date(year,month,day),time(00:00:00))
ldt_end = datetime(date(year,month,day),time(23:59:59))
messagebox("",string(ldt_begin))
dw_1.settransobject(sqlca)
dw_1.retrieve()
dw_1.setfilter("out_time>=ldt_begin and out_time<=ldt_end")
dw_1.filter()
帮我看看什么错误吧!高分重赏! 展开
展开全部
这句dw_1.setfilter("out_time>=ldt_begin and out_time<=ldt_end")
不能这样写,我这里现在没环境,你这样试试
dw_1.setfilter("(out_time>=ldt_begin) and (out_time<=ldt_end)")
不能这样写,我这里现在没环境,你这样试试
dw_1.setfilter("(out_time>=ldt_begin) and (out_time<=ldt_end)")
参考资料: http://www.huarw.com/program/pb/pb07/200609/39726.html
展开全部
dw_1.setfilter("out_time >="+string(ldt_begin)+" and out_time<="+string(ldt_end))
dw_1.filter()
dw_1.filter()
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
dw_1.SetFilter("string(out_time,'yyyy-mm-dd hh:mm:ss') >= '" + String(ldt_Begin,'yyyy-mm-dd hh:mm:ss') + "' and string(out_time,'yyyy-mm-dd hh:mm:ss') <= '" + String(ldt_End,'yyyy-mm-dd hh:mm:ss') + "'")
setfilter的filter语句是不能直接将代码中的变量放到里面的
setfilter的filter语句是不能直接将代码中的变量放到里面的
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
dd hh:mm:ss') + "'")
setfilter的filter语句是不能直接将代码中的变量放到里面的
setfilter的filter语句是不能直接将代码中的变量放到里面的
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
无
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询