I have some entity like an Address. Because of performance issues I want to save the whole entity in a single field, like "street;zip;city".

One can create a EnhancedUserType to do that. In some examples I found and in sources of hibernate the method "objectToSQLString" is always implemented like that:

@Override
public String objectToSQLString(Object object) {
    if (object != null) {
        Address oo = (Address)object;
        return "'" + oo.toSomeString() + "'";
    } else {
        return "";
    }       
}

I do not understand, if the method returns an SQL representation or not. Why are the special symbols, like ['] are not escaped inside the string? How should I escape them? A standard SQL way is of escaping is ['] -> [''], but in some dialects [backslash] must be escaped as well.

Is there some Hibernate utility, which can do escaping for me dependent on dialect? How does Hibernate itself solve this problem? I could not find it in source code :-(

link|improve this question

60% accept rate
Can't you persist the address using component mapping? – Inerdial Oct 28 '11 at 18:50
Any reason you can't just use JDBC prepared statements? – ChadNC Oct 28 '11 at 19:35
I always use Prepared Statement, but Hibernate want me to implement EnhancedUserType, which includes this method. – 30thh Nov 2 '11 at 10:34
Sure, the component mapping could be a solution as well (usually even the better one). But it is not what this question about. – 30thh Nov 2 '11 at 10:45
feedback

1 Answer

You must indeed return a SQL literal string, surrouned with single quotes, and with internal scopes escaped. AFAIK, only the single quotes must be escaped, by doubling them : 'O''Reilly'. At least that's what apache commons-lang StringEscapeUtils does (or did).

But I doubt you will gain anything by putting a whole address like this in a single column. And you'll lose the possibility to query on individual fields of the address. Have you measured that these three fields caused a performance problem, and that putting them in a single column would solve the problem?

link|improve this answer
We have a lot of such small dependent objects and all of them must be loaded eagerly (because of transfering over SOAP). – 30thh Oct 28 '11 at 20:17
That doesn't prevent you from storing theses embedded objects in multiple columns in the database, even in the same table. See docs.jboss.org/hibernate/core/3.6/reference/en-US/html_single/… – JB Nizet Oct 28 '11 at 20:19
Single quotes is not a problem. The issue is a backslash in MySQL notation which can also be used for escaping. I am curious how Hibernate handle it? – 30thh Oct 28 '11 at 20:22
feedback

Your Answer

 
or
required, but never shown

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