Exemplo n.º 1
0
 private void clearDataButton_Click(object sender, EventArgs e)
 {
     database = new DbManipulations();
     database.EraseData();
 }
Exemplo n.º 2
0
 private void dropDbButton_Click(object sender, EventArgs e)
 {
     database = new DbManipulations();
     database.DropDB();
 }
Exemplo n.º 3
0
 private void CreateDBButton_Click(object sender, EventArgs e)
 {
     database = new DbManipulations();
     database.CreateDB();
 }