当前位置: 首页 > 工具软件 > Remarks > 使用案例 >

java获取mysql表元数据REMARKS为空的解决办法

房泉
2023-12-01

1,mysql连接新增连接参数(remarks=true&useInformationSchema=true)

例如:jdbc:mysql://localhost:3306/dbName?remarks=true&useInformationSchema=true

2,使用(show create table)命令查询建表语句,再使用正则获取

3,使用(select * from information_schema.tables where table_schema='库名称' and table_name='表的名称' limit 1)命令查询,遍历resultset,通过rs.getString("TABLE_COMMENT")方法可获取到

 类似资料: