I have an Object Area in GAE-J:

public class Area  implements Serializable {
    private Long Id;
    private String name;
    private Long parentID;

    public Area() {
    }

    public Area(Long Id) {
        this.Id = Id;
    }

    public Area(Long Id, String name) {
        this.Id = Id;
        this.name = name;
    }

    public Area(Long Id, String name, Long parentID) {
        this.Id = Id;
        this.name = name;
        this.parentID = parentID;
    }        

    public Long getId() {
        return Id;
    }

    public void setId(Long Id) {
        this.Id = Id;
    }    

    public String getName() {
        return name;
    }    

    public void setName(String name) {
        this.name = name;
    }    

    public Long getParentID() {
        return parentID;
    }

    public void setParentID(Long parentID) {
        this.parentID = parentID;
    }
}

And I want to retrive data from GAE-J in JPA/JDO. So what is jpa/jdo syntax for for this SQL Syntax

SELECT c.Id, c.name, c.parentID, p.parentName from Area c inner join Area p on c.parentId = a.Id
link|improve this question
You have no relationship in that class. Add an Area "parent" and maybe it could be contemplated. – DataNucleus Jun 2 '11 at 8:29
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.