Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Perhaps i'm wandering down the wrong path - I'm looking for a tool like hbm2ddl.

I currently have domain model (pojos with JDO annotations) - I need to setup the database.

I want to experiment with a few database types - HSQLDB, Google App Engine, Oracle.

Can anyone offer advice on how to proceed?

share|improve this question

1 Answer

up vote 2 down vote accepted

You mean DataNucleus "SchemaTool" that generates the schema direct, or creates a DDL file ? Obviously that will not work for AppEngine since it has no "schema" and is not an RDBMS

share|improve this answer
Thanks for pointing me in the right direction :) – Ash Kim Jun 9 '10 at 10:05

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.