public void ConexaoFireBird() { try { AcessoFireBird acessoFirebird = new AcessoFireBird(); UsuariosFireBird = acessoFirebird.RetornaTabelaUsuariosCadastrados(); } catch (Exception err) { System.Windows.Forms.MessageBox.Show(err.Message); } }
private bool Acessodados() { try { lbStatus.Text = "Acessando o banco de dados - FireBird"; AcessoFireBird acesso = new AcessoFireBird(); TabelaUsuariosFireBird = acesso.RetornaTabelaUsuariosCadastrados(); lbStatus.Text = "Acessando o banco de dados - SQL Server"; //MessageBox.Show(acessar.Funcionarios_RetornaNomePorID(1)); return true; } catch (Exception err) { timer1.Enabled = false; MessageBox.Show(err.Message + "Impossivel conectar"); return false; } }