SQLQuery does not autoflush all entities used in the query

Description

I have a problem with autoflushing on native SQL queries. The scenario is:

1. I use a complex sql with a lot of joined tables
2. I change some of the associated objects from the result (but not the returned types).
3. I do the same sql as in step 1

The problem is that the autoflush before the sql in step 3 only flushes changes in objects of the class returned by the sql, NOT all other objects used in the query.

If I change the query in step 3 to HQL it works as I would expect and flushes all objects included in the query.

It says in the hibernate documentation (section 10.10 Flushing the session), that

"However, Hibernate does guarantee that the Query.list(..) will never return stale data; nor will they return the wrong data."

This seems not to be the case with native SQL queries.

The SQL query: (flushes only changed Tjeneste objects)
SQLQuery sqlQuery = session.createSQLQuery
("SELECT /*+ use_nl(a av) / {t.}"
+"FROM TJENESTE t, "
+"TJENESTEVERSION tv, "
+"ALLOKERING a, "
+"ALLOKERINGSVERSION av "
+"WHERE t.TJENESTE_ID = tv.TJENESTE_ID "
+"AND av.plan_id = 0 "
+"AND av.slettet = 0 "
+"AND av.allokering_id = a.allokering_id "
+"AND a.medarbejder_id =:medarb "
+"AND tv.tjeneste_id = av.tjeneste_id "
+"AND tv.fra_tid >= :fraTid "
+"AND tv.til_tid <= :tilTid"
);

The HQL query: (flushes changed objects of classes Tjeneste, TjenesteVersion, AllokeringsVersion, Allokering)

("SELECT av.tjeneste "
+" FROM"
+" TjenesteVersion tv,"
+" AllokeringsVersion av"
+" WHERE "
+" av.plan.id = 0"
+" and av.slettet = 0"
+" and av.allokering.medarbejder.id = :medarb"
+" and tv.tjeneste = av.tjeneste"
+" and tv.plan.id = 0"
+" and tv.fraTid >= :fraTid"
+" and tv.tilTid <= :tilTid"

It would be enough to add a method to SQLQuery to add entities to the QuerySpace that will be flushed before the query is executed. An api method to match the "<synchronize>" in a named query.

Regards,
Frank

PS: See the thread in the Hibernate user forum:
http://forum.hibernate.org/viewtopic.php?p=2324846

Activity

Show:

Steve EbersoleMarch 21, 2011 at 7:04 PM

Bulk closing stale resolved issues

Steve EbersoleNovember 18, 2006 at 6:21 AM

trunk / 3.2

Steve EbersoleNovember 16, 2006 at 6:19 PM

Yes, such functionality should be added to the SQLQuery interface. Something like SQLQuery.addSynchronize(String)...

Max Rydahl AndersenOctober 4, 2006 at 4:40 PM

It is possible, ust used namedquery - for the programmatic api it is not, hence its an improvement.

Regarding the documenation, search for <synchronize>. (p.s. the native sql docs could probably be more explicit about synchronize)

Timm KristensenOctober 4, 2006 at 3:35 PM

Could you possibly provide me with a link to the documentation that you mention ? i do not seem to be able to find it.

Yes, i am fully aware that hibernate cant guarentee data consistency if the data is not flushed, hence the problem.

As it is now its not possible for hibernate, and the user, to flush the affected tables, unless you flush the whole session. The solution i propose is a small feature, which would make it possible for the user to declare which tables are used and hence which tables hibernate need to check for dirty data.

Fixed

Details

Assignee

Reporter

Components

Fix versions

Priority

Created October 4, 2006 at 1:05 PM
Updated March 21, 2011 at 7:04 PM
Resolved November 18, 2006 at 6:21 AM