public DataTable CarregarVeiculoAbordado(int equipe) { try { db = new DataBaseAcess(); dt = new DataTable(); db.Conectar(); string comando = "SELECT * FROM veiculos_abordados WHERE equipe = " + equipe; dt = db.RetDataTable(comando); } catch (Exception ex) { throw new Exception(ex.Message); } finally { db = null; } return(dt); }