Example #1
0
 private void CriarTabelas()
 {
     try
     {
         DalHelper.CriarTabelasSQlite();
     }
     catch (Exception ex)
     {
         MessageBox.Show("Erro : " + ex.Message);
     }
 }
Example #2
0
 private void CriarBanco()
 {
     try
     {
         DalHelper.CriarBancoSQLite();
     }
     catch (Exception ex)
     {
         MessageBox.Show("Erro : " + ex.Message);
     }
 }