On 04/05/2011 11:23 AM, Max Rydahl Andersen wrote:
>> Like I said, I do not think that is enough as I think that if you get the
>> connection, you also need the "transaction context" holding that connection.
>> "transacvtion context" here is the TransactionCoordinator.
>>
>> session.sessionWithOpti
> session.sessionWithOptions().connection().openSession()
>
> says *exactly* what you just said: "open a session using the same connection
> as an existing session".
Yes - sorry I didn't get the full thread when writing my initial question ;)
> Like I said, I do not think that is enough as I t
Back up.
On 04/05/2011 09:05 AM, Steve Ebersole wrote:
> The Hibernate JIRA is temporarily unavailable. Atlassian and Contegix
> are looking into it.
>
--
Steve Ebersole
http://hibernate.org
___
hibernate-dev mailing list
hibernate-dev@lists.jboss.org
The Hibernate JIRA is temporarily unavailable. Atlassian and Contegix
are looking into it.
--
Steve Ebersole
http://hibernate.org
___
hibernate-dev mailing list
hibernate-dev@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/hibernate-dev
yes
On 5 avr. 2011, at 13:42, Steve Ebersole wrote:
> Well maybe I misunderstood. If you mean the Integrator impls pushing these
> delegates then yeah I guess that makes sense.
>
> On Apr 5, 2011 6:09 AM, "Steve Ebersole" wrote:
___
hibernate-dev ma
Well maybe I misunderstood. If you mean the Integrator impls pushing these
delegates then yeah I guess that makes sense.
On Apr 5, 2011 6:09 AM, "Steve Ebersole" wrote:
___
hibernate-dev mailing list
hibernate-dev@lists.jboss.org
https://lists.jboss.org/
Hey,
I've forked core on github and pushed changes to upgrade hibernate-ehcache
module to the latest ehcache & Hibernate SPI (which was still using the
deprecated CacheProvider).
I've pushed changes for the 3.5 & 3.6 branches. Currently working on master...
Should I create a JIRA for that ? I als
In JPA and other Java specs, there is a pattern emerging where one could unwrap
some objects from a common API
interface EntityManager {
T unwrap(Class type);
}
We typically let a Session be extracted from an EntityManager
Session session = entityManager.unwrap(Session.class);
I wonder if we