aspose file tools
The moose likes Object Relational Mapping and the fly likes I am getting null value for particular column, while loading the object. Big Moose Saloon
  Search | Java FAQ | Recent Topics
Register / Login
JavaRanch » Java Forums » Databases » Object Relational Mapping
Reply Bookmark "I am getting null value for particular column, while loading the object." Watch "I am getting null value for particular column, while loading the object." New topic
Author

I am getting null value for particular column, while loading the object.

Rahul Ba
Ranch Hand

Joined: Oct 01, 2008
Posts: 203
I have an entity bean which is made using Hibernate annotation.




so, whenever I save the particular POJO, it's get saved into the table properly. Here id is Autogenerated value and dElementId is Primary key.
now, once I save and then try to load the particular entity from DB, i get value of id as null but do get proper value of dElementId.

Now, my question is why I am getting null value for id colum though it has proper value in table. I am commiting the transaction as well as flushing the transaction too, but did not help. Remember as soon as I save the object, I am trying to retrieve the object, because I need id value.



Ankit Garg
Saloon Keeper

Joined: Aug 03, 2008
Posts: 9189
    
    2

Your id field is autogenerated but you have @Id annotation on the dElementId field??


SCJP 6 | SCWCD 5 | Javaranch SCJP FAQ | SCWCD Links
Rahul Ba
Ranch Hand

Joined: Oct 01, 2008
Posts: 203

This is because, DAElementID is primary key in database..hence...ID is is sequence generated value....
Please let me know opinion.
 
I agree. Here's the link: http://aspose.com/file-tools
 
subject: I am getting null value for particular column, while loading the object.
 
Similar Threads
IllegalArgumentException: cannot remove/save a detached entity
hibernate question - left outer join (best practices)
org.hibernate.PropertyValueException: not-null property references a null or transient value:
Hibernate One To Many Not Null
table not mapped error when compiling entity bean