我想使用预定义的表模板动态创建新的数据库表。那部分我看不到任何问题。
但是然后我想用一个jOOQ生成的表类(从模板中)来编写jOOQ查询,并且只是在执行之前更改表名。
有人对此有解决方案吗?
最佳答案
为此,请使用jOOQ的运行时模式/表映射支持:
Settings settings = new Settings()
.withRenderMapping(new RenderMapping()
.withSchemata(
new MappedSchema().withInput("THE_SCHEMA")
.withOutput("THE_SCHEMA")
.withTables(
new MappedTable().withInput("PREDEFINED_TABLE")
.withOutput("CHANGED_TABLE")
)
));
// Add the settings to the DSLContext
DSLContext ctx = DSL.using(connection, dialect, settings);
// Run your queries with the above ctx
ctx.select(PREDEFINED_TABLE.COLUMM)
.from(PREDEFINED_TABLE)
.fetch();
上面会产生
SELECT "THE_SCHEMA"."CHANGED_TABLE"."COLUMN"
FROM "THE_SCHEMA"."CHANGED_TABLE"
更多信息在这里:
http://www.jooq.org/doc/latest/manual/sql-building/dsl-context/runtime-schema-mapping
关于java - jOOQ表模板,用于查询的动态表名称,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/35154523/