如何使用 JDBC API 选择或转移到 MySQL 中的另一个数据库?

PHPz
发布: 2023-08-29 19:09:02
转载
1167 人浏览过

如何使用 JDBC API 选择或转移到 MySQL 中的另一个数据库?

一般来说,您可以使用 USE 查询更改 MySQL 中的当前数据库。

语法

Use DatabaseName;
登录后复制

要使用 JDBC API 更改当前数据库,您需要:

  • 注册驱动程序 :使用DriverManager类的registerDriver()方法注册驱动程序类。将驱动程序类名作为参数传递给它。

  • 建立连接:使用 DriverManager 类的 getConnection() 方法连接数据库。将 URL(字符串)、用户名(字符串)、密码(字符串)作为参数传递给它。

  • 创建语句:使用Connection接口的createStatement()方法。

  • 执行查询:使用Statement接口的execute()方法执行查询。

示例

以下 JDBC 程序与 MySQL 建立连接并选择名为 mydatabase 的数据库 -

import java.sql.Connection;
import java.sql.DriverManager;
import java.sql.SQLException;
import java.sql.Statement;
public class ChangeDatabaseExample {
   public static void main(String args[]) throws SQLException {
      //Registering the Driver
      DriverManager.registerDriver(new com.mysql.jdbc.Driver());
      //Getting the connection
      String mysqlUrl = "jdbc:mysql://localhost/";
      Connection con = DriverManager.getConnection(mysqlUrl, "root", "password");
      System.out.println("Connection established......");
      //Creating the Statement
      Statement stmt = con.createStatement();
      //Create table Query
      String query = "USE mydatabase";
      //Executing the query
      stmt.execute(query);
      System.out.println("Database changed......");
   }
}
登录后复制

输出

Connection established......
Database changed......
登录后复制

除此之外,您还可以通过在 URL 末尾传递数据库名称来选择/切换到 MySQL 中所需的数据库,如下所示 -

//Getting the connection
String url = "jdbc:mysql://localhost/mydatabase";
Connection con = DriverManager.getConnection(url, "root", "password");
登录后复制

以上是如何使用 JDBC API 选择或转移到 MySQL 中的另一个数据库?的详细内容。更多信息请关注PHP中文网其他相关文章!

来源:tutorialspoint.com
本站声明
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn
热门教程
更多>
最新下载
更多>
网站特效
网站源码
网站素材
前端模板