請教Query元件的屬性 |
尚未結案
|
T-Jason
一般會員 發表:5 回覆:20 積分:10 註冊:2003-05-19 發送簡訊給我 |
|
Mecer
初階會員 發表:15 回覆:30 積分:29 註冊:2002-10-25 發送簡訊給我 |
引言: 各位大大請問二個問題 1.Query元件的(1)AutoCalcFields (2)AutoRefresh (3)Constrained (4)Constraints 的屬性分別是什麼用處跟分別 2.我的資料庫是用Oracle8.1.7 我如果把AutoRefresh設成True,CachedUpdates設成Ture 後,如果我Query1.Edit ...... Query1.Post時, 如再把 Query1.Open後會發現所修改的資料並沒有寫進資料庫裡 這是為什麼呢?建議你在發問之前,請先找找站內的文章,相信會找到一堆說明的文章滴~~ 或是查詢Help、直接翻閱相關的書籍~~ 不要每個元件的每個屬性都要人家的說明才會使用~~ |
T-Jason
一般會員 發表:5 回覆:20 積分:10 註冊:2003-05-19 發送簡訊給我 |
|
Fishman
尊榮會員 發表:120 回覆:1949 積分:2163 註冊:2006-10-28 發送簡訊給我 |
Hi: T-Jason, 1.關於 TQuery 的屬性
(1)AutoCalcFields
(2)AutoRefresh
(3)Constrained
(4)Constraints
Delphi 的 Help 中都有詳細的說明,建議你直接看 Help 會比較清楚
2.因為 DataSet 的 CachedUpdates 設為 True,post 並不會將資料寫入資料庫
必須用以下寫法(來源也是 Delphi 的 Help)
procedure TForm1.ApplyButtonClick(Sender: TObject); begin with CustomerQuery do begin Database1.StartTransaction; try ApplyUpdates; {try to write the updates to the database}; Database1.Commit; {on success, commit the changes}; except Database1.Rollback; {on failure, undo the changes}; raise; {raise the exception to prevent a call to CommitUpdates!} end; CommitUpdates; {on success, clear the cache} end; end;---------------------------------- 小弟才疏學淺,若有謬誤尚請不吝指教 ----------------------------------
------
Fishman |
本站聲明 |
1. 本論壇為無營利行為之開放平台,所有文章都是由網友自行張貼,如牽涉到法律糾紛一切與本站無關。 2. 假如網友發表之內容涉及侵權,而損及您的利益,請立即通知版主刪除。 3. 請勿批評中華民國元首及政府或批評各政黨,是藍是綠本站無權干涉,但這裡不是政治性論壇! |