コード例 #1
0
ファイル: Main.cs プロジェクト: Stannnnn/Live_Performance
 private void BtnLogin_Click(object sender, EventArgs e)
 {
     if (this.main.VerifyUser(this.tbUsername.Text, this.tbPassword.Text))
     {
         LoggedPersoneel = this.main.GetPersoneel(this.tbUsername.Text);
         this.Hide();
         new Missies().Show();
     }
     else
     {
         MessageBox.Show("Foutief wachtwoord.");
     }
 }
コード例 #2
0
 public static bool UpdatePersoneel(Personeel p)
 {
     using (OracleConnection o = new OracleConnection(connstring))
     {
         using (OracleCommand c = new OracleCommand())
         {
             try
             {
                 c.Connection = o;
                 o.Open();
                 c.CommandText = "UPDATE TPersoneel SET Naam = '" + p.Naam + "', Wachtwoord = '" + p.Wachtwoord + "', Geboortedatum = to_date('" + p.Geboortedatum + "','DD-MM-RR HH24:MI:SS'), Functie = '" + p.Functie + "' WHERE ID = '" + p.UID + "'";
                 c.ExecuteNonQuery();
                 return true;
             }
             catch (Exception e)
             {
                 MessageBox.Show(e.Message);
                 return false;
             }
             finally
             {
                 o.Close();
             }
         }
     }
 }
コード例 #3
0
 public static bool DeletePersoneel(Personeel p)
 {
     using (OracleConnection o = new OracleConnection(connstring))
     {
         using (OracleCommand c = new OracleCommand())
         {
             try
             {
                 c.Connection = o;
                 o.Open();
                 c.CommandText = "DELETE FROM TPersoneel WHERE ID = '" + p.UID + "'";
                 c.ExecuteNonQuery();
                 return true;
             }
             catch (Exception e)
             {
                 MessageBox.Show(e.Message);
                 return false;
             }
             finally
             {
                 o.Close();
             }
         }
     }
 }
コード例 #4
0
 public static bool AddPersoneel(Personeel p)
 {
     using (OracleConnection o = new OracleConnection(connstring))
     {
         using (OracleCommand c = new OracleCommand())
         {
             try
             {
                 c.Connection = o;
                 o.Open();
                 c.CommandText = "INSERT INTO TPersoneel (Naam, Wachtwoord, Geboortedatum, Functie) VALUES ('" + p.Naam + "', '" + p.Wachtwoord + "', to_date('" + p.Geboortedatum + "','DD-MM-RR HH24:MI:SS'), '" + p.Functie + "')";
                 c.ExecuteNonQuery();
                 return true;
             }
             catch (Exception e)
             {
                 MessageBox.Show(e.Message);
                 return false;
             }
             finally
             {
                 o.Close();
             }
         }
     }
 }