Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- private void button1_Click_1(object sender, EventArgs e)
- {
- string povezava = //POT DO BAZE;
- string zapisi = "Update Zaposleni set ID='" + this.textBox1.Text + "',Ime='" + this.textBox2.Text + "',Priimek='" + this.textBox3.Text + "',Uporabnisko_ime='" + this.textBox4.Text + "',Geslo='" + this.textBox5.Text + "',E_posta='" + this.textBox6.Text + "',Ulica='" + this.textBox7.Text + "',Hisna_stevilka='" + this.textBox8.Text + "',Mesto='" + this.textBox9.Text + "',Delovno_mesto='" + this.textBox10.Text + "' where ID='" + this.textBox1.Text + "';";
- OleDbConnection baza = new OleDbConnection(povezava);
- OleDbCommand beri = new OleDbCommand(zapisi, baza);
- OleDbDataReader branje;
- try
- {
- baza.Open();
- branje = beri.ExecuteReader();
- MessageBox.Show("Podatki so shranjeni.");
- while (branje.Read())
- {
- }
- }
- catch (Exception ex)
- {
- MessageBox.Show(ex.Message);
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement