S
sercall
Unregistered / Unconfirmed
GUEST, unregistred user!
用ADOTable连接SQL SERVER数据,
ADOTable 有一 IndexFieldName 属性,可以选择已定义的索引(PartNo).
然后在Delphi5中到请查找一记录:
procedure TForm1.Button1Click(Sender: TObject);
begin
ADOTable1.IndexFieldName := 'PartNo';
ADOTable1.Seek('12345');
end;
在运行的时候, 点击Button1, 出现
"Current provider does not support the necessary interface for Index functionality"的错误信息.
请教各位! 谢谢!!
ADOTable 有一 IndexFieldName 属性,可以选择已定义的索引(PartNo).
然后在Delphi5中到请查找一记录:
procedure TForm1.Button1Click(Sender: TObject);
begin
ADOTable1.IndexFieldName := 'PartNo';
ADOTable1.Seek('12345');
end;
在运行的时候, 点击Button1, 出现
"Current provider does not support the necessary interface for Index functionality"的错误信息.
请教各位! 谢谢!!