vote up 1 vote down star

In my SQL Server 2000 database, I have a timestamp (in function not in data type) column of type datetime named lastTouched set to (getdate()) as its default value/binding.

I am using the Netbeans 6.5 generated JPA entity classes, and have this in my code

@Basic(optional = false)
@Column(name = "LastTouched")
@Temporal(TemporalType.TIMESTAMP)
private Date lastTouched;

However when I try to put the object into the database I get,

javax.persistence.PersistenceException: org.hibernate.PropertyValueException: not-null property references a null or transient value: com.generic.Stuff.lastTouched

I've tried setting setting the @Basic to (optional = true), but that throws a exception saying the database doesn't allow null values for the timestamp column, which it doesn't by design.

ERROR JDBCExceptionReporter - Cannot insert the value NULL into column 'LastTouched', table 'DatabaseName.dbo.Stuff'; column does not allow nulls. INSERT fails.

I previously got this to work in pure Hibernate, but I have sense switched over to JPA and have no idea how to tell it that this column is suppose to be generated on the database side. Note that I am still using Hiberate as my JPA persistance layer.

flag

2 Answers

vote up 0 vote down

private Date lastTouched = new Date();

link|flag
That creates it on the java side though, I really want the database to generate the timestamp, as it will be more accurate. – James McMahon May 1 at 15:52
it sounds like you don't want to, but you could just programmatically set lastTouched. If you had this working in hibernate before you can just use that hibernate mapping. – zmf May 1 at 16:14
vote up 2 vote down check

I fixed the issue by changing the code to

@Basic(optional = false)
@Column(name = "LastTouched", insertable = false)
@Temporal(TemporalType.TIMESTAMP)
private Date lastTouched;

So the timestamp column is ignored when generating SQL inserts. Not sure if this is the best way to go about this. Feedback is welcome.

link|flag
2  
You may also want to add @Column(name = "LastTouched", insertable = false, updatable = false) to use database generated timestamps also with SQL UPDATE statements. – Juha Syrjälä May 1 at 19:08
Thanks Juha. I'm sure that would have messed me up later down the road. – James McMahon May 1 at 19:23
Actually, thinking about it more, I think I will need the column on update, as I am going to need to update it through Java when I make column changes. Unless there is a way to do the column update on the database side somehow. – James McMahon May 6 at 15:18
According to stackoverflow.com/questions/36001/…, a trigger is what I should be using here. – James McMahon May 6 at 15:53

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.