delphi locate多字段查询

简单格式:

IF MSQ_NewBillQuantity.Locate('FStockID;FMarchID', VarArrayOf([FStockID, FMarchID]), []) = False then

Begin

//没有查询到符合条件的记录

End

Else

Begin

//查询到符合条件的记录

End

原文地址:https://www.cnblogs.com/srsrd/p/5333885.html