Advertisement
Guest User

Untitled

a guest
Jan 11th, 2014
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 1.11 KB | None | 0 0
  1. private void button1_Click_1(object sender, EventArgs e)
  2.         {
  3.             string povezava = //POT DO BAZE;
  4.             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 + "';";
  5.             OleDbConnection baza = new OleDbConnection(povezava);
  6.             OleDbCommand beri = new OleDbCommand(zapisi, baza);
  7.             OleDbDataReader branje;
  8.             try
  9.             {
  10.                 baza.Open();
  11.                 branje = beri.ExecuteReader();
  12.                 MessageBox.Show("Podatki so shranjeni.");
  13.                 while (branje.Read())
  14.                 {
  15.  
  16.                 }
  17.             }
  18.             catch (Exception ex)
  19.             {
  20.                 MessageBox.Show(ex.Message);
  21.             }
  22.         }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement