On Fri, Aug 9, 2013 at 12:21 PM, Ben Hood <[email protected]> wrote:

> I was wondering if there is a way to control the the upper/lower case
> SQL generation in JOOQ. Forcing lower case quoting seems like it would
> do the trick.

One way I've found to do handle this is as follows:

Settings settings = new Settings();
settings.setRenderNameStyle(RenderNameStyle.LOWER);
DSLContext ctx = DSL.using(c, dialect, settings);

-- 
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/groups/opt_out.


Reply via email to