Re: [Neo] Neo4j as a XA source

2008-08-15 Thread Jonas Bergvall
:02 PM, Jonas Bergvall [EMAIL PROTECTED] wrote: Do you have an estimate when that would be? Sometime next week. Currently I'm looking into using Neo's TM and injecting XA resources into it instead. Is there any example of how to do that? You need to setup a branch id for the additional XA

Re: [Neo] Object binding using annotations?

2008-08-15 Thread Jonas Bergvall
As I happen to like annotations I wonder if there is anybody out there looking into e.g. using JPA annotations to do this, perhaps with some additional Neo specific annotations? I think Emil and I talked about this months ago offline. //Jonas -Ursprungligt meddelande- Från: [EMAIL

[Neo] Neo4j as a XA source

2008-08-14 Thread Jonas Bergvall
is to inject the TransactionManager for Neo to use. This would not be that hard to achieve but there may be some minor issues to get it working. I am currently busy with the b7 release of Neo but could take a look at this when b7 has been released. -Johan On Thu, Aug 14, 2008 at 12:34 PM, Jonas Bergvall

[Neo] (no subject)

2008-03-14 Thread Jonas Bergvall
Hi all! I regularly get this exception below, caused by the final delete() in the following code snippet (part of a linked list implemented using Neo) Relationship lastItemRel = rootNode.getSingleRelationship(relType, Direction.INCOMING); if (lastItemRel != null) { lastItem =

RE: [Neo] Re: [ticket] #21: Neo holds on to transaction log file after shutdown

2007-11-21 Thread Jonas Bergvall
That solved the problem. Great! //Jonas -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of neo4j.org Sent: den 21 november 2007 20:46 Cc: user@lists.neo4j.org Subject: [Neo] Re: [ticket] #21: Neo holds on to transaction log file after shutdown #21: Neo

RE: [Neo] Re: [ticket] #19: Read only transactions

2007-11-08 Thread Jonas Bergvall
What we are looking for is if Neo can detect the issue and log it. In Spring's hibernate template classes this read-only flag is used to optimize things (no flush to db). But for hibernate it also causes and an exception if any write operations are performed (see