Hi, As part of a much larger task of migrating all of our sql-store [1] logic to the JOOQ API, I'm in the process of replacing a small part of our legacy (LGPL licensed) code with the JOOQ equivalent.
Before I start, a reference to the class in question can be found below here [2]. OK, with that said, basically I need to find a replacement for CreateTableQuery [3], I understand that I should be accessing the implementation through o.j.util.Factory, however (due to my unfamiliarity with the JOOQ API at this stage) I can only locate delete, inset, results, selects, simple selects & updates... oh and of course query and query part's :0) I need to replace/alternative getter and setter implementations which (privately) set a column constraint, which can then used when we createSchema() in our SqlStore. As I'm picking the JOOQ API up at a reasonably random stage rather than starting at the beginning (which I'll be doing in a couple of weeks), I would really appreciate any help anyone can throw in my direction at this stage. It's early days, but it looks like I'll be around for a while. Regards and thanks in advance Lewis [1] https://svn.apache.org/viewvc/gora/trunk/gora-sql/ [2] https://svn.apache.org/viewvc/gora/trunk/gora-sql/src/main/java/org/apache/gora/sql/store/SqlStore.java?view=markup [3] http://openhms.sourceforge.net/sqlbuilder/apidocs/com/healthmarketscience/sqlbuilder/CreateTableQuery.html
