請教這個TQUERY正確語法? |
答題得分者是:william
|
huangeider
高階會員 發表:288 回覆:492 積分:231 註冊:2003-02-26 發送簡訊給我 |
|
william
版主 發表:66 回覆:2535 積分:3048 註冊:2002-07-11 發送簡訊給我 |
What is the field type of a004? string? datetime? For string:
qmoney.SQL.Add('select * from money1 where a004 between '
QuotedStr(edit1.text) ' and ' QuotedStr(edit1.text)); Remember the "space".... For datetime, MS Access needs # instead of ' in quoting the text.
|
huangeider
高階會員 發表:288 回覆:492 積分:231 註冊:2003-02-26 發送簡訊給我 |
|
william
版主 發表:66 回覆:2535 積分:3048 註冊:2002-07-11 發送簡訊給我 |
'#' is for Access only (no need for ').. Anyway using parameter is more general solution:
qmoney.SQL.Add('select * from money1 where a004 between :D1 and :D2'); qmoney.ParamByName('D1').AsDateTime := StrToDateTime(trim(Edit1.Text)); qmoney.ParamByName('D2').AsDateTime := StrToDateTime(trim(Edit1.Text)); |
huangeider
高階會員 發表:288 回覆:492 積分:231 註冊:2003-02-26 發送簡訊給我 |
本站聲明 |
1. 本論壇為無營利行為之開放平台,所有文章都是由網友自行張貼,如牽涉到法律糾紛一切與本站無關。 2. 假如網友發表之內容涉及侵權,而損及您的利益,請立即通知版主刪除。 3. 請勿批評中華民國元首及政府或批評各政黨,是藍是綠本站無權干涉,但這裡不是政治性論壇! |