我需要将JOOQ的Record结果集转换为Table Record列表.有没有办法这样做? 最佳答案 是的,你可以使用
Result.into(Table)
.一个例子:
Result<?> result = create.fetch(...);
Table<MyRecord> MY_TABLE = ...
Result<MyRecord> other = result.into(MY_TABLE);
当Result
实现List时,这应该做你需要的
我需要将JOOQ的Record结果集转换为Table Record列表.有没有办法这样做? 最佳答案 是的,你可以使用
Result.into(Table)
.一个例子:
Result<?> result = create.fetch(...);
Table<MyRecord> MY_TABLE = ...
Result<MyRecord> other = result.into(MY_TABLE);
当Result
实现List时,这应该做你需要的