Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have MySql table that has a date field with zeroes ("0000-00-00") as its default value (field cannot be null, I can't change table structure). Hibernate doesn't like zero dates and throws exception during read or save.

I managed to make it read records by setting MySql connection setting "zeroDateTimeBehavior=convertToNull" that converts zero dates to nulls while retrieving records. It is all working fine until I try to save the record that has null date - it throws exception that date cannot be null.

So the question is - how to save record through Hibernate so date will appear as zeroes in a table?

Thanks.

share|improve this question
2  
Why do you want to handle them, anyway? Zero date--get out there and celebrate Jesus' birthday! Why are you in front of your computer on such a momentous occasion! <G> – Loren Pechtel Aug 19 '09 at 18:19
Year zero is nonexistent in the Julian and Gregorian calendar -- it jumps straight from 1 BC to 1 AD. I can't really blame Hibernate for this one. – Jeffrey Hantin Sep 10 '09 at 22:02
And a zero month and day number is not allowed anyway, even if the year was valid. – Lasse V. Karlsen Sep 10 '09 at 22:07

1 Answer

I'd try to add an Hibernate Interceptor (API, Doc) and try to implement something in the onSave() method.

The following code may work:

static final Date ZERO_DATE = //0000-00-00

public boolean onSave(Object entity,
	              Serializable id,
	              Object[] state,
	              String[] propertyNames,
	              Type[] types)
	       throws CallbackException {
	for(int i = 0; i< propertyNames.length; i++) {
		if(propertyNames[i].equals("dateFieldName") && state[i]==null) {
			state[i] = ZERO_DATE;
			return; //or may continue, if there are several such fields.
		}
	}
}
share|improve this answer
But what exactly is ZERO_DATE? – serg Aug 19 '09 at 20:53
The java represntation of a date field with just zeroes. – David Rabinowitz Aug 19 '09 at 21:01
Can you give an example how it looks? There is no such thing in java as date with all zeroes, that's why there is a problem with zero dates. – serg Aug 19 '09 at 21:49
There is no such thing anywhere as a date with all zeroes. That thing in MySQL is not a date value. – Lasse V. Karlsen Sep 10 '09 at 22:05

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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