ideamaven项⽬中连接数据库
数据库连接
1. 在l中配置(不要介意版本号是否对应mysql的版本我的mysql版本为 5.7.34 没有对应的jar 包,但是依旧可以使⽤)
```xml
<dependency>
<groupId>mysql</groupId>
<artifactId>mysql-connector-java</artifactId>
<version>8.0.11</version>
<scope>runtime</scope>
</dependency>
```
2. 然后是连接数据库
步骤如下:
3. 测试连接
import java.sql.*;
public class Test {
public static final String JDBC_DRIVER = "sql.cj.jdbc.Driver";
//8.0以上版本的数据库,驱动器是sql.cj.jdbc.Driver,⽽不是之前的sql.jdbc.Driver
public static final String DB_URL = "jdbc:mysql://localhost:3306/jdbc?serverTimezone" +
"=Asia/Shanghai&characterEncoding=utf8&useUnicode=true&useSSL=false";
/
/8.0以上版本的数据库要在后⾯加上  ?useSSL=false&serverTimezone=UTC
//在这个语句中,localhost是数据库链接名称,3306是端⼝号,jdbc是要访问的数据库
public static final String USER = "root";//数据库⽤户名
public static final String PASS = "123456";//数据库密码
public static void main(String[] args) {
Connection conn = null;
Statement stmt = null;
try {
//注册jdbc驱动
Class.forName(JDBC_DRIVER);
//打开链接
System.out.println("连接数据库...");
conn = Connection(DB_URL, USER, PASS);
System.out.println("连接成功");
//执⾏查询
System.out.println("实例化");
stmt = ateStatement();
String sql;
System.out.println("开始查询数据库");
sql = "select * from jdbc.users";//查询jdbc数据表,此处可能爆红,不要介意直接运⾏。如果介意,设置的搜索框内输⼊:SQL Dialects            ResultSet rs = uteQuery(sql);
while (rs.next()) {
int id = rs.getInt("id");
String name = rs.getString("name");
String pwd = rs.getString("pwd");
System.out.print("ID:" + id);
System.out.print(" name:" + name);
System.out.print(" password:" + pwd);
System.out.println();
}
rs.close();
stmt.close();
conn.close();
} catch (SQLException se) {
se.printStackTrace();
} catch (Exception e) {
e.printStackTrace();
} finally {
try {mysql下载jar包
if (stmt != null) stmt.close();
} catch (SQLException se2) {
}
try {
if (conn != null) conn.close();            } catch (SQLException se) {
se.printStackTrace();
}
}
}
}

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。