Hello Christian, The change is expected. Please refer to the section about backwards-incompatible behavioural changes of the release notes: ( http://www.jooq.org/notes)
Behavioural changes (backwards-incompatible)#3131 <https://github.com/jOOQ/jOOQ/issues/3131>Query.getBindValues() should not return inlined bind values#3132 <https://github.com/jOOQ/jOOQ/issues/3132>Quoting identifiers that contain "special characters" may lead to unexpected results when using RenderNameStyle.AS_IS#3306 <https://github.com/jOOQ/jOOQ/issues/3306>Let Record.key() return a "copy record", instead of a view to the original record As you can see, #3132 was implemented to remove this "clever" automatic quoting of *some* identifiers. More information about that change here: https://github.com/jOOQ/jOOQ/issues/3132 Ideally, you would be generally turning on quoting of identifiers using the default RenderNameStyle.QUOTED Setting. Hope this helps, Lukas 2014-06-26 14:53 GMT+02:00 <[email protected]>: > Hello, > > I am developing an app using jooq and a SQlite database and I am facing > the following problem after updating to jooq 3.4 (from 3.3.2): > > Field names with spaces which have been perfectly escaped in queries with > quotes in jooq 3.3.2 (and before) are not escaped anymore with jooq 3.4 > leading to SQL errors in many queries. > > Thanks and best regards > > Christian > > -- > 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. > -- 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.
