You are not logged in.
Pages: 1
I could not find an example of using the IN operator with FillPrepare (It's a little tricky search for it.)
I tried this way but it does not work:
var
oMeuProduto: TProduto;
begin
oMeuProduto := TProduto.Create;
try
oMeuProduto.FillPrepare(BaseDeDados, 'estoque IN (?)', [1, 0, 2, 41] );
while (oMeuProduto.FillOne) do
begin
Log(IntToStr(oMeuProduto.ID));
end;
finally
FreeAndNil(oMeuProduto);
end;
end;
Last edited by Roberto Schneiders (2013-11-14 19:55:41)
Offline
Pages: 1