Well, I'm doing a system for a library and in the book search grid that when typing the book id in txtbox it updates and shows the results on the grid, but the grid is not updating and the data is still on the grid and do not change.
If anyone knows what is thank you from now on.
procedure Tfrm_alocar.BitBtn1Click(Sender: TObject);
var parametro:integer;
begin
parametro := strtoint(txt_livro.Text);
Form_dados.Modulo_Dados.Query_livros.Close;
Form_dados.Modulo_Dados.Query_livros.sql.Clear;
Form_dados.Modulo_Dados.Query_livros.sql.Add('select * from livros where id = :parametro');
Form_dados.Modulo_Dados.Query_livros.Parameters.ParamByName('parametro').Value := parametro;
Form_dados.Modulo_Dados.Query_livros.Open;
GridLivros.Update;
GridLivros.Refresh;
end;