Update field value Using TableAdaptar C #

1

Greetings!

I'm working with DataSet to modify data in DB sql. I have a TableAdapter allocated to a form where some of the fields are linked to textboxs. It turns out some of the fields I do not want to show in the textbox but I want to update their values via code. How do I do this ??

Here is the code to save the data:

private void clBindingNavigatorSaveItem_Click(object sender, EventArgs e)
{

    this.Validate();

    micro.cl.Rows[0]["clstamp"] = "vc233546xxz";

    this.clBindingSource.EndEdit();
    clTableAdapter.Update(micro.cl);

}

//"micro" é o nome da minha Dataset
//A minha table "cl" contém 3 campos: codigo,nome e clstamp.
//o codigo e o nome sao introduzidos pelo utilizador, enquando que o clstamp 
//será uma chave aleatoria que será gerada ao gravar, e ela n precisa ser 
//mostrada ao utilizador.
    
asked by anonymous 28.08.2018 / 07:17

0 answers