共计 1363 个字符,预计需要花费 4 分钟才能阅读完成。
Java 中获取 MySQL 表注释的方法可以通过查询 information_schema 数据库中的表来实现。
以下是一个示例代码:
import java.sql.*;
public class GetTableComment { public static void main(String[] args) {
Connection conn = null;
Statement stmt = null;
ResultSet rs = null;
try {
// 创建数据库连接
conn = DriverManager.getConnection(“jdbc:mysql://localhost:3306/mydatabase”,
“username”,“password”);
// 创建 Statement 对象
stmt = conn.createStatement();
// 查询表的注释
rs = stmt.executeQuery("SELECT table_comment FROM information_schema.tables WHERE
table_schema = 'your_database_name' AND table_name = 'your_table_name'");
// 获取注释
if (rs.next()) {
String comment = rs.getString(“table_comment”);
System.out.println("Table Comment: " + comment);
}
} catch (SQLException e) {
e.printStackTrace();
} finally {
// 关闭连接和资源
try {
if (rs != null) rs.close();
if (stmt != null) stmt.close();
if (conn != null) conn.close();
} catch (SQLException e) {
e.printStackTrace();
}
}
}
}
在上面的代码中,需要将 your_database_name
和your_table_name
替换为你要查询的数据库名和表名。同时,需要将 username
和password
替换为你的 MySQL 数据库的用户名和密码。
运行上述代码,即可获取指定表的注释。
丸趣 TV 网 – 提供最优质的资源集合!