是否可以使用速度模板获取表格行数?
如果有人以前做过,可以分享一下howTo吗?
提前致谢。
请使用 SchemaCrawler 16.6.1(或更高版本),它引入了一个新的命令行开关,--load-row-counts
. (请先使用 SchemaCrawler 下载工具下载 Velocity 和 Thymeleaf。)然后,您可以使用如下所示的 Velocity 模板:
#foreach($table in $catalog.tables)
#if ($table.tableType == "table")
$table.fullName - $table.getAttribute("schemacrawler.table.row_count")
#end
#end
Sualeh Fatehi,SchemaCrawler