Hello,

Using jOOQ Professional, we are writing to a SQL Server instance. We're 
finding that only the DDL statements (eg create tables) seem to honor the 
MY-SCHEMA mapped schema, while the DML (eg inserts) is not.

We're initializing our Settings object with:


@Bean
public Settings settings() {
return new Settings()
.withRenderCatalog(true)
.withRenderSchema(true)
.withRenderMapping(new RenderMapping()
.withSchemata(new MappedSchema()
.withInputExpression(Pattern.compile(".*+"))
.withOutput("MY_SCHEMA")) );
}
I believe we're runing 3.13 - is there an additional setting we need to be 
configuring?

Let me know what other info might be helpful.

Thanks,
Greg

-- 
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/f1597c43-6dc6-41d8-afc5-a957d9cd4b76n%40googlegroups.com.

Reply via email to