Re: Nabble JIRA Integration

2009-04-23 Thread Michael Dick
Pinaki Poddar wrote: > > Hi, > I am looking for a magical button "Create a JIRA Issue" -- that appears > on a Nabble post and when clicked creates a JIRA issue in OpenJPA with > relevant context information. > Anyone knows where I can find such a button -- or something similar? > > Pinaki >

Re: ConcurrentModificationException

2009-04-23 Thread Pinaki Poddar
hi, need few more data points to reproduce the problem. 1. in which transactional context public void execute(EntityManager entityManager) is invoked? Who is managing the transaction: a container or the application itself? 2. callback.next( modelObjectIterator.next() ); what exactly is the

Re: OpenJPA good Tut0rial

2009-04-23 Thread jklcom99
Hi, Have you found any tutorial or example on using Dali & OpenJPA? I'm trying to generate entities from tables and it's saying "Note: Must have active connection to select schema" Thanks ArjunReddy wrote: > > Hi All, > > Is there any good tutorial to get started on OpenJPA? Where ever I g

Re: Performance issues

2009-04-23 Thread Paul Copeland
It makes sense that it would do a query per primary key (all in a single transaction). There is a join of "variants" with the main table for each such query indicating I guess eager fetching in the join. Depending on the number of "variants" this could be a large number of rows. That as much