Joined: Mon Jan 21, 2008 12:38 pm Posts: 3
|
Hi
in one transaction i save stuff to the db using plain hibernate (hql). This is done in one transaction. i.e. in a @Transactional spring service
Directly after this transaction (and offically outside transaction), i do a native mysql query (still through a hibernate session). My question is: am i guaranteed that the data is readable via native query ? or is it dependant on the first transaction fully committing and flushing to db which might not have happened right away ?
|
|