mysql jdbc:mysql
时间: 2023-11-21 13:58:46 浏览: 87
JDBC:MySQL8.0.29驱动
5星 · 资源好评率100%
MySQL是一种关系型数据库管理系统,而JDBC是Java数据库连接的标准API。JDBC驱动程序是用于在Java应用程序和数据库之间建立连接的软件组件。MySQL JDBC驱动程序是用于在Java应用程序和MySQL数据库之间建立连接的JDBC驱动程序。以下是两种连接MySQL数据库的方法:
1.使用反射连接:
```java
public void con2() throws Exception {
// 得到驱动文件
Class<?> aClass = Class.forName("com.mysql.cj.jdbc.Driver");
Driver driver = (Driver) aClass.newInstance();
// 连接数据库
String url = "jdbc:mysql://localhost:3306/hsp_db02";
Properties properties = new Properties();
properties.setProperty("user", "root");
properties.setProperty("password", "abc123");
Connection connect = driver.connect(url, properties);
// 关闭数据库连接
connect.close();
}
```
2.使用DriverManager连接:
```java
public void con3() throws Exception {
Class<?> aClass = Class.forName("com.mysql.cj.jdbc.Driver");
Driver driver = (Driver) aClass.newInstance();
// 链接数据库
String url = "jdbc:mysql://localhost:3306/hsp_db02";
String user = "root";
String password = "abc123";
// 注册驱动
DriverManager.registerDriver(driver);
// 连接数据库
Connection connection = DriverManager.getConnection(url, user, password);
// 关闭数据库连接
connection.close();
}
```
阅读全文