获取数据库所有表

最后更新:2024-03-08 16:33:38 | 状态:未完成
LinkedHashMap<string,table> tables = service.metadata().tables();
for(String key:tables.keySet()){
	Table table = tables.get(key);
	log.warn("table:"+table.getName());
	log.warn("comment:"+table.getComment());
}
方法有多个参数
Catalog catalog, Schema schema, String name, String types
最近更新 搜索 提交