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."); } }
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(); } } } }
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(); } } } }
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(); } } } }