I am trying to use the KeepNamesGeneratorStrategy via programmatic 
configuration.  Does anyone have an example of how to add this strategy to 
a programmatic configuration such as:

Connection connection = dataSource.getConnection();
org.jooq.util.jaxb.Configuration configuration = new 
org.jooq.util.jaxb.Configuration()
        .withGenerator(new Generator()
                .withDatabase(new org.jooq.util.jaxb.Database()
                        .withName("org.jooq.util.derby.DerbyDatabase")
                        .withInputSchema(schemaName))
                .withTarget(new Target()
                        .withPackageName(packageName)
                        .withDirectory(pkgDirName)));
GenerationTool tool = new GenerationTool();
tool.setConnection(connection);
tool.run(configuration);

-- 
You received this message because you are subscribed to the Google Groups "jOOQ 
User Group" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
For more options, visit https://groups.google.com/d/optout.

Reply via email to