私はあなたの質問をよく理解していませんでした.私たちがあなたを助けやすくするために、あなたの問題を特定し、正確に説明してください.
・表中のお客様名を検索する場合は以下のとおりです。
If Not ADOTable1.Locate('Name',Edit1.Text,[]) then
MessageDlg('The customer does not exist !',mtInformation,[mbOK],0);
Options を見つけます: loCaseInsensitive,loPartialKey 。
ADOQuery で検索することもできます。例を次に示します。
ADOQuery1.Close;
ADOQuery1.SQL.Text := 'Select * From YourTable Where Name ='+QuotedStr(Edit1.Text);
ADOQuery1.Open;
または、次のように ADOQuery パラメータを使用できます。
ADOQuery1.Close;
ADOQuery1.Parameters.ParamByName('Term').Value:=Edit1.Text;
ADOQuery1.SQL.Text := 'Select * From YourTable Where Name=:Term';
ADOQuery1.Open;
幸運を。