Hi Lukas,
The problem was solved. I had to set the configuration a bit differently.
@Configuration
public class Contest20JooqConfiguration {
@Bean
public DefaultConfigurationCustomizer configurationCustomizer() {
return (DefaultConfiguration c) -> c.settings()
.withRenderCatalog(false)
.withRenderSchema(false);
}
}
Setting the dialect helped as well
Thank you
Simon
On Monday, March 20, 2023 at 8:26:09 AM UTC+1 [email protected] wrote:
> Hi Simon,
>
> The log message is based only on the SQLDialect, not the parse dialect or
> interpreter dialect. Did you set that to SQLSERVER2014 as well?
>
> The ignoring of the render catalog / schema setting is probably a bug? Can
> you report it here with more details on how to reproduce it?
> https://github.com/jOOQ/jOOQ/issues/new/choose
>
> Thanks,
> Lukas
>
>
> On Sun, Mar 19, 2023 at 11:29 AM Simon Martinelli <[email protected]>
> wrote:
>
>> Hi,
>>
>> I use Azure SQL and when starting the Spring Boot App I see:
>>
>> Version mismatch : Database version is older than what dialect
>> SQLSERVER supports: 12.00.937. Consider
>> https://www.jooq.org/download/support-matrix to see what jOOQ version
>> and edition supports which RDBMS versions.
>>
>> My configuration is:
>>
>> @Configuration
>> public class ContestJooqConfiguration {
>>
>> @Bean
>> Settings jooqSettings() {
>> return new Settings()
>> .withParseDialect(SQLDialect.SQLSERVER2014)
>> .withInterpreterDialect(SQLDialect.SQLSERVER2014)
>> .withRenderCatalog(false)
>> .withRenderSchema(false);
>> }
>> }
>>
>> Also, the configuration withRenderCatalog and Schema is ignored!
>>
>> select [contest].[mar].[c_sport_branch].[id]
>>
>> What's wrong with my configuration?
>>
>> Thanks, Simon
>>
>> --
>> 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].
>> To view this discussion on the web visit
>> https://groups.google.com/d/msgid/jooq-user/4d27f01f-1a96-4b74-bffd-ffcbc3b7de81n%40googlegroups.com
>>
>> <https://groups.google.com/d/msgid/jooq-user/4d27f01f-1a96-4b74-bffd-ffcbc3b7de81n%40googlegroups.com?utm_medium=email&utm_source=footer>
>> .
>>
>
--
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].
To view this discussion on the web visit
https://groups.google.com/d/msgid/jooq-user/78fad680-5e79-49b0-b077-f06b399e514cn%40googlegroups.com.