Fork me on GitHub

Java连接MySQL数据库

工具:
eclipse
MySQL5.5
MySQL连接驱动:mysql-connector-java-5.1.44-bin.jar

Java编译器是eclipse,下载mysql-connector-java-5.1.44-bin.jar,我下的是最新版。
加载驱动:
1、在工程目录中创建lib文件夹,将下载好的JDBC放到该文件夹下,如图所示:lib
2、右键工程名,点击Properties properties
选择Java Build Path中的Libraries,点击Add JARs…, 选择刚才添加的JDBC,如下图:JDBC
3、配置好MySQL,添加一个用户,用户名是style,密码是1234, 创建一个数据库, 数据库名是student。创建表:

create table students(
-> sno int(10) not null,
-> sname varchar(8) not null,
-> sex char(2) not null,
-> bdate date not null,
-> height dec(5,2) default 000.00,
-> primary key(sno));

然后插入一条数据:

insert into students(sno,sname,sex,bdate,height) values(‘1’,’gfa’,’男’,’2017-10-29’,’fwef’);

创建好数据库后, 编写Java文件来访问MySQL数据库。

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
package sqldemo;
import java.sql.*;
public class mains {
public static void main(String[] args) {
//声明Connection对象
Connection con;
//驱动程序名
String driver = "com.mysql.jdbc.Driver";
//URL指向要访问的数据库名student
String url = "jdbc:mysql://localhost:3306/student";
//MySQL配置时的用户名
String user = "style";
//MySQL配置时的密码
String password = "1234";
//遍历查询结果集
try {
//加载驱动程序
Class.forName(driver);
//1.getConnection()方法,连接MySQL数据库!!
con = DriverManager.getConnection(url,user,password);
if(!con.isClosed())
System.out.println("Succeeded connecting to the Database!");
//2.创建statement类对象,用来执行SQL语句!!
Statement statement = con.createStatement();
//要执行的SQL语句
String sql = "select * from students";
//3.ResultSet类,用来存放获取的结果集!!
ResultSet rs = statement.executeQuery(sql);
System.out.println("-----------------");
System.out.println("执行结果如下所示:");
System.out.println("-----------------");
System.out.println("姓名" + "\t" + "性别");
System.out.println("-----------------");
String job = null;
String id = null;
while(rs.next()){
//获取stuname这列数据
job = rs.getString("sname");
//获取stuid这列数据
id = rs.getString("sex");
//输出结果
System.out.println(job + "\t" + id);
}
rs.close();
con.close();
} catch(ClassNotFoundException e) {
//数据库驱动类异常处理
System.out.println("Sorry,can`t find the Driver!");
e.printStackTrace();
} catch(SQLException e) {
//数据库连接失败异常处理
e.printStackTrace();
}catch (Exception e) {
// TODO: handle exception
e.printStackTrace();
}finally{
System.out.println("数据库数据获取成功!");
}
}
}

运行结果如图所示:
结果

Your support will encourage me to continue to create!