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.

Reply via email to