Hi Joe,

If you are using Oracle (which would be my guess, based on your email domain), 
then you can simply create an Oracle Synonym for the Sequence that the 
WebObjects app uses.

Basically it's an alias so when you ask for the Synonym, you'll get the thing 
it points at. That should allow you to mess with the DB behind EOF's back. You 
traitorous heathen. :-)

Just be mindful that depending on how you are fetching data in the WebObjects 
app, you may or may not immediately see the new information in the WO app that 
you've inserted with Cayenne.

Dave Avendasora

On Mon, Aug 8, 2011 at 6:45 PM, Joseph Senecal <sene...@apple.com wrote:

> Thanks to the help provided from this mailing list, my prototype was done on 
> time and shows that the concept can work.
> 
> The next problem to solve is how to get a Cayenne program to peacefully 
> coexist with legacy WebObjects programs that will be inserting records into 
> the same table. I can restrict the conflict to one table, but that one table 
> is central to all others and new records could be created by any process that 
> loads any of the related fact tables.
> 
> The problem is that Cayenne and WebObjects use differently named sequences to 
> allocate primary keys. These sequences are also formatted differently because 
> WebObjects allocates primary keys one at a time where Cayenne allocates 
> primary keys 20 at the time. The obvious solution is to configure the 
> sequences for different primary key ranges. The problem is that these 
> programs will be running at over a dozen different sites, which makes 
> monitoring for exhausting of an assigned range problematic. My boss would 
> find a different solution, if one is possible.
> 
> I'm sure that combining multiple ORM's has happened before. Does anyone have 
> advice as to the best way to make them play nicely together?
> 
> Joe

Reply via email to