ADOQuery的問題 |
答題得分者是:timhuang
|
nieo
一般會員 發表:32 回覆:56 積分:17 註冊:2003-07-25 發送簡訊給我 |
|
timhuang
尊榮會員 發表:78 回覆:1815 積分:1608 註冊:2002-07-15 發送簡訊給我 |
|
nieo
一般會員 發表:32 回覆:56 積分:17 註冊:2003-07-25 發送簡訊給我 |
|
timhuang
尊榮會員 發表:78 回覆:1815 積分:1608 註冊:2002-07-15 發送簡訊給我 |
|
nieo
一般會員 發表:32 回覆:56 積分:17 註冊:2003-07-25 發送簡訊給我 |
|
timhuang
尊榮會員 發表:78 回覆:1815 積分:1608 註冊:2002-07-15 發送簡訊給我 |
hi, 你可以查閱一下 help 中的說明: 第一個是欄位名, 第二個是要找的資料, 第三個則是loPartialKey (部分比對), loCaseInsensitive (不分大小寫) 的兩種條件式.
所以我的例子就是找 code=2 而且是 2 開頭的(如 231)也可以!
-----------------------------------------
Searches the dataset for a specified record and makes that record the current record. virtual bool __fastcall Locate(const AnsiString KeyFields, const
System::Variant &KeyValues, TLocateOptions Options); Description Call Locate to search a dataset for a specific row and make it the current row. KeyFields is a string containing a semicolon-delimited list of field names on which to search. KeyValues is a variant that specifies the values to match in the key fields. If KeyFields lists a single field, KeyValues specifies the value for that field on the desired row. To specify multiple search values, pass a variant array as KeyValues, or construct a variant array on the fly using the VarArrayOf routine. For example: TLocateOptions Opts; Opts.Clear();
Opts << loPartialKey;
Variant locvalues[2];
locvalues[0] = Variant("Sight Diver");
locvalues[1] = Variant("P"); CustTable->Locate("Company;Contact", VarArrayOf(locvalues, 1), Opts); Options is a set that optionally specifies additional search latitude when searching on string fields. If Options contains the loCaseInsensitive setting, then Locate ignores case when matching fields. If Options contains the loPartialKey setting, then Locate allows partial-string matching on strings in KeyValues. If Options is an empty set, or if KeyFields does not include any string fields, Options is ignored. Locate returns true if it finds a matching row, and makes that row the current one. Otherwise Locate returns false.
|
nieo
一般會員 發表:32 回覆:56 積分:17 註冊:2003-07-25 發送簡訊給我 |
|
tech_state
版主 發表:44 回覆:638 積分:641 註冊:2003-02-10 發送簡訊給我 |
nieo, 您好
timhuang前輩使用Locate,我則想到另外一個做法,提出來供您參考看看。
既然是使用ADOQuery,那可以使用SQL語法過濾資料。
ADOQuery->Close(); ADOQuery->Clear(); ADOQuery->SQL->Text = "select * from TableName where Field = 'abc' "; ADOQuery->Open();以上的code可以查詢出TableName這個Table中Field這個欄位中有abc的所有資料, 如果您要查詢的資料是唯一的, 就是找到那唯一的一筆資料, 再使用timhuang前輩所說的 Edit1->Text = ADOQuery1->FieldByName("aaa")->AsString; 就可以取出目前資料中的aaa這個欄位的資料。 ================================= 涵養怒中氣。謹防順口言。留心忙裡錯。珍惜有時錢。 是非終日有,不聽自然無 天下本無事,庸人自擾之 |
本站聲明 |
1. 本論壇為無營利行為之開放平台,所有文章都是由網友自行張貼,如牽涉到法律糾紛一切與本站無關。 2. 假如網友發表之內容涉及侵權,而損及您的利益,請立即通知版主刪除。 3. 請勿批評中華民國元首及政府或批評各政黨,是藍是綠本站無權干涉,但這裡不是政治性論壇! |