類似Access查詢中的記憶功能

2021-03-31 08:56:59 字數 998 閱讀 2566

procedure t***locatefrm.locatebtnclick(sender: tobject);

varsetlooptions : tlocateoptions;

i : integer;

slkeys : tstrings;

begin

if ***bobox1.items.indexof(***bobox1.text)<0 then

tryslkeys := tstringlist.create;

slkeys.addstrings(***bobox1.items);

***bobox1.items.clear;

***bobox1.items.add(***bobox1.text);

for i := 0 to 8 do

if i < slkeys.count then

***bobox1.items.add(slkeys.strings[i]);

finally

slkeys.free;

endelse begin

i := ***bobox1.items.indexof(***bobox1.text);

***bobox1.items.insert(0,***bobox1.text);

***bobox1.items.delete(i+1);

***bobox1.itemindex := 0;

end;

if rdoexactly.checked then

setlooptions :=

else

setlooptions := [lopartialkey];

if not desdataset.locate('ztm', ***bobox1.text, setlooptions) then

messagebox(handle, '沒有找到符合條件的記錄。', '提示', 0+64);

end;

2004年12月21日21:45:59

Access中的模糊查詢

在近日的寫web程式時用到了access的模糊查詢,在acces裡寫 怎麼也找不到記錄,後來才起來原來acess和sqlserver的模糊查詢是有特別的 條件 查詢表a 的name欄位中包括 b 的記當 在access裡的 1select from a where name like b sql s...

Access分頁查詢

由於access資料庫內沒有儲存過程一說.那麼實現它的分頁上效率問題一直都是麻煩事.下面一段 相當來說算了很高效的了.如果有什麼更好的方法,請多指教 謝謝 呼叫方法 string strsql select p.productid,p.proclassid,p.productname,p.profl...

ACCESS模糊查詢

原文 access模糊查詢出現的問題,開發中需要注意 在sql server中模糊查詢通常是這樣的select from articletable where authorname like jacky 但是在access中用這條語句執行的時候竟然發現查不出結果,怎麼可能呢?後來查了下資料,發現問題...

ACCESS模糊查詢

access模糊查詢出現的問題,開發中需要注意 在sql server中模糊查詢通常是這樣的select from articletable where authorname like jacky 但是在access中用這條語句執行的時候竟然發現查不出結果,怎麼可能呢?後來查了下資料,發現問題如下 ...

ACCESS模糊查詢

access模糊查詢出現的問題,開發中需要注意 在sql server中模糊查詢通常是這樣的select from articletable where authorname like 關鍵字 但是access的萬用字元和sql server的萬用字元不一樣。access資料庫內測試時的萬用字元為 ...