NetBeans Forums

 FAQFAQ   SearchSearch   MemberlistMemberlist   RegisterRegister   ProfileProfile   Log in to check your private messagesLog in to check your private messages   Log inLog in 
  

creating entity class from database, somthing missing?

 
Post new topic   Reply to topic    NetBeans Forums -> NetBeans Users
View previous topic :: View next topic  
Author Message
kingsz1



Joined: 09 Jul 2009
Posts: 1

PostPosted: Thu Jul 09, 2009 3:29 am    Post subject: creating entity class from database, somthing missing? Reply with quote

Hello all. I am new in using NB.

I had created a entity bean from database, the NB generated these codes:
Code:

    public Uuser() {
    }

    public Uuser(Integer id) {
        this.id = id;
    }

    public Uuser(Integer id, String uemail, String bulaid, String bulaword, String uAlias, String uuuid) {
        this.id = id;
        this.uemail = uemail;
        this.bulaid = bulaid;
        this.bulaword = bulaword;
        this.uAlias = uAlias;
        this.uuuid = uuuid;
    }

    public Integer getId() {
        return id;
    }
...


It came with all table fields. Today I install NetBeans 6.7 and try again, here was the code generating:
Code:

    public Uuser() {
    }

    public Uuser(Integer id) {
        this.id = id;
    }

    public Integer getId() {
        return id;
    }
...


Did I do something wrong? How i can let NB generate the code (red color portion)?

Thank for any help.
Back to top
Display posts from previous:   
Post new topic   Reply to topic    NetBeans Forums -> NetBeans Users All times are GMT
Page 1 of 1

 
Jump to:  
You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum
You can attach files in this forum
You can download files in this forum


Powered by phpBB
By use of this website, you agree to the NetBeans Policies and Terms of Use. © 2012, Oracle Corporation and/or its affiliates. Sponsored by Oracle logo