我想使用预定义的表模板动态创建新的数据库表。那部分我看不出任何问题。
但是我希望有一个jOOQ生成的表类(来自模板)来编写jOOQ查询,只是在执行之前更改表名。
任何人都有解决方案吗?
答案 0 :(得分:2)
使用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