1个回答
展开全部
例如表名为room 类型字段为style,房间价格为price
在按房间价格查询按钮的clicked事件中编写如下代码:
dw_1.reset()
string ls_price1,ls_price2,ls_sql_old,ls_sql,ls_condition
ls_price1 = sle_2.text
ls_price2 = sle_3.text
if isnull(ls_price1) then
messagebox("提示","房间价格起始不能为空")
return
end if
if isnull(ls_price2) then
messagebox("提示","房间价格止不能为空")
return
end if
ls_sql_old = dw_1.getsqlselect()
ls_condition = " where price > '+ls_price1+' and price < '+ls_price2+' "
ls_sql = ls_sql_old + ls_condition
dw_1.setsqlselect(ls_sql)
dw_1.retrieve()
之后就是你想要得到的结果
在按房间价格查询按钮的clicked事件中编写如下代码:
dw_1.reset()
string ls_price1,ls_price2,ls_sql_old,ls_sql,ls_condition
ls_price1 = sle_2.text
ls_price2 = sle_3.text
if isnull(ls_price1) then
messagebox("提示","房间价格起始不能为空")
return
end if
if isnull(ls_price2) then
messagebox("提示","房间价格止不能为空")
return
end if
ls_sql_old = dw_1.getsqlselect()
ls_condition = " where price > '+ls_price1+' and price < '+ls_price2+' "
ls_sql = ls_sql_old + ls_condition
dw_1.setsqlselect(ls_sql)
dw_1.retrieve()
之后就是你想要得到的结果
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询