OdbcCommand comando = new OdbcCommand();
comando.CommandType = CommandType.StoredProcedure;
comando.CommandText = "Listado_Paises";
comando.Connection = listaPaises.Conexion;
comando.Parameters.Add("@tipo", OdbcType.Int);
comando.Parameters["@tipo"].Value = 1;
odbcLector = comando.ExecuteReader();