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
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
> 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
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
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
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.
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