コード例 #1
0
        public void ConexaoFireBird()
        {
            try
            {
                AcessoFireBird acessoFirebird = new AcessoFireBird();
                UsuariosFireBird = acessoFirebird.RetornaTabelaUsuariosCadastrados();
            }
            catch (Exception err)
            {

                System.Windows.Forms.MessageBox.Show(err.Message);
            }
        }
コード例 #2
0
 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;
     }
 }