使用 Java JDBC 访问 MySQL 中的数据库模式
问题:检索 MySQL 数据库中的数据库模式列表使用 Java JDBC。
响应:
要获取数据库模式列表,应使用 DatabaseMetaData 接口的 getCatalogs() 方法。对于 MySQL 数据库, getCatalogs() 方法返回架构信息而不是术语“架构”。
<code class="java">Class.forName("com.mysql.jdbc.Driver"); // Modify user and password as needed Connection con = DriverManager.getConnection (connectionURL, "user", "password"); ResultSet rs = con.getMetaData().getCatalogs(); while (rs.next()) { System.out.println("TABLE_CAT = " + rs.getString("TABLE_CAT") ); }</code>
此代码演示了连接到 MySQL 数据库并检索架构列表的过程。每个模式都会打印到控制台。
以上是如何使用 Java JDBC 检索 MySQL 中的数据库模式列表?的详细内容。更多信息请关注PHP中文网其他相关文章!