Jump to content
Fórum Script Brasil
  • 0

(Resolvido) Retornar valor de query mysql


sacofritoxd

Question

Ola galera tudo bem?

Estou mesmo precisando da ajuda de voces.

Como retorno o valor de uma query para preencher os campos de um cadastro?

tipo

Oque estou tentando esta assim

procedure TfrmCadProd.txtCodigoChange(Sender: TObject);
  begin
    if txtcodigo.Text <> '' then
      begin
       consulta.SQL.add ('select * from produtos where idprodutos:=' + txtCodigo.Text);
       consulta.Open;
       if not consulta.eof then
        begin
          pf_MostraCampos;
        end
       else
        begin
          pf_LimpaCampos;
        end;
       end
    else
      begin
         pf_LimpaCampos;
      end;
  end;

  procedure TfrmCadProd.pf_LimpaCampos();
  begin
    txtCodBarras.Text = '';
    cmbDescricao.text = '';
    txtEstoque.text = '';
    txtvalor.Text = '';
  end;

  procedure TfrmCadProd.pf_MostraCampos();
  begin
    txtCodBarras.Text = consulta.Fields('codbarras').value
    cmbDescricao.text = consulta.Fields('descricao').value
    txtValor.text = consulta.Fields('vl_venda').value
    if consulta.Fields('ativo').value = 'S' then
      begin
        optSim.checked = true;
      end
    else
      begin
        optNao.checked = true;
      end;

  end;

MAs não esta dando certo...alguém pode me ajudar, por favor?

Link to comment
Share on other sites

1 answer to this question

Recommended Posts

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.



  • Forum Statistics

    • Total Topics
      152.2k
    • Total Posts
      652.1k
×
×
  • Create New...