I have a table with properties defined like this : @Column(name="\"SERIAL#\"")

When Hibernate inserts data, everything works fine. But it comes to Hibernate-Envers(HE), HE forgets to surround the field name with doublequotes.

How can i force it to use the doublequotes aroud the fields ?

link|improve this question

feedback

2 Answers

Do you want to use double quotes, or do you want to escape the name? If you just want to escape, use backticks (`) and Hibernate will convert it to whatever mechanism your database uses for escaping. So, your example would be:

@Column(name="`SERIAL#`")

Just out of curiosity: why do you need a # in a column name? I always thought that special chars are a bad idea in identifiers :-)

link|improve this answer
i'm building a small monitoring tool for databases. One of the database i monitor exposes tables with those kind of characters. – Stephan Mar 28 '11 at 8:54
Hibernate understands the backticks but Hibernate Envers doesn't. – Stephan Mar 28 '11 at 9:43
feedback
up vote 0 down vote accepted

For solving the problem, i manage to not use the '#' in the field name thus neither Hibernate nor Hibernate Envers have to escape the field name.

EDIT:

In fact it's a bug in Hibernate Envers 3.6.2.Final. It should be solved later.

EDIT 2: The bug has been fixed in Hibernate Envers 3.6.3 and Hibernate Envers 4.0.0Alpha.

EDIT 3: The bug has been fixed in Hibernate Core 3.6.4.Final.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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