Delphi数据库(100分)

  • 主题发起人 主题发起人 何嘉豪
  • 开始时间 开始时间

何嘉豪

Unregistered / Unconfirmed
GUEST, unregistred user!
对于Query查找应有几种查找方法?
 
sql; finkey要索引;还有过滤filer
 
還是用動態SQL好
當然還可用參數
filer等
 
人家说的是查找也,呵呵
那该是Locate和FIND吧
 
主要是写sql,可以在query里写,也可以在程序里sql.add();
还有就是写filter,写法同上。
 
有Locate;
Lookup;
SetKey,GotoKey;
Find;
Filter;
Range等等六种方法,你自己查看帮助吧,还有例子,一看便知.
 
1. select XX from XX where xxx//SQL
2. Locate(const KeyFields: string; const KeyValues: Variant; Options: TLocateOptions): Boolean; override;
3. filted:=true;filter:='xxxx';
4. SQL+参数
query.sql.text:=format('select xx from xxx where xx="%s"',[edit1.text]);
 
Locate;
Lookup;
SetKey,GotoKey;
Find;
Filter;
setRange
动态SQL查找
 
后退
顶部