0
When I use Fdquery to perform a select that returns n records, I need to use the . First command after the . Open to make sure it stays on the first record?
Example:
QryAux3.Close;
QryAux3.SQL.Text := 'Select * from Produtos';
QryAux3.Open;
QryAux3.First; //Precisa desta linha?
For good practice yes... almost everyone does. If you’re asking if the open is already on first, I’m not sure, probably, but I don’t think you should assume that.
– Tiago Rodrigues