Re: NuoDB Cayenne Adaptor

2012-08-14 Thread Aristedes Maniatis
On 14/08/12 11:32pm, Aristedes Maniatis wrote: On 14/08/12 10:00pm, Malcolm Edgar wrote: Hi All, I am interested in developing a Cayenne Adaptor for the NuoDB database https://www.nuodb.com/ Its a very interesting database technology for developing scale out / high availability solutions. The

Re: Database generation SQL script creation in background

2012-08-14 Thread John Huss
There are 2 existing ways of doing this, and one proposed one. See here for a comparison of the schema creation methods: https://docs.google.com/document/d/1-ZGTCZdw5sksamJCKMT4bdw0zhrftKQptIgozk3ojbc/edit The new proposed one is available in the sandbox here: http://svn.apache.org/viewvc/cayenne

RE: NuoDB Cayenne Adaptor

2012-08-14 Thread Durchholz, Joachim
> Interesting. Their website is full of marketing speak, > but very light on what makes this database so "revolutionary". Same impression here. Seems like they have built a clustered DB engine from scratch. That's good for throwing out the legacy cruft that all RDBMSes stagger under, but bad for

Re: Database generation SQL script creation in background

2012-08-14 Thread Mike Kienenberger
If you want to do it from java code, this is how I used to set up test databases in Cayenne 1.1. It's probably slightly different now. public static void createSchemaForObjEntityName(Configuration configuration, String objEntityName) throws Exception { DataNode dataNode = getDataN

Re: Database generation SQL script creation in background

2012-08-14 Thread Joe Baldwin
Martin, Unless you are changing the DB Schema often, then you could another method is to export the SQL by saving a version via the modeler and then using an ant task to execute the sql (I use this method since I have different structures defined via my SQL files previously generated from the m

Re: NuoDB Cayenne Adaptor

2012-08-14 Thread Aristedes Maniatis
On 14/08/12 10:00pm, Malcolm Edgar wrote: Hi All, I am interested in developing a Cayenne Adaptor for the NuoDB database https://www.nuodb.com/ Its a very interesting database technology for developing scale out / high availability solutions. The stuff that relational databases struggle with.

NuoDB Cayenne Adaptor

2012-08-14 Thread Malcolm Edgar
Hi All, I am interested in developing a Cayenne Adaptor for the NuoDB database https://www.nuodb.com/ Its a very interesting database technology for developing scale out / high availability solutions. The stuff that relational databases struggle with. Presumably to get started I would need to cr