JDBC全称Java DataBase Connectivity(java数据库连接技术)。是Java语言和数据库之间的一座桥梁,是Java语言中用来规范客户端程序如何来访问数据库的应用程序接口,提供了诸如查询和更新数据库中数据的方法。
1)JDBC下载地址:javaJDBC8.0.22版本驱动
点一次是5.1.49版本,再点一次切换到8.0.22版本
2)根据自己的系统进行下载,我们以最新版本为例;
1)下载好解压压缩包,打开文件看将一个以jar结尾的文件,将文件拉入你的java项目文件中;
2)选中导入的jar,执行下面操作
右键->Build Path->Add to Build Path
,8版本不用写,8驱动是自动注册的。我这里选择不写。
package com.bingjiu.mysql;
public class JdbkMysql {
public static void main(String[] args) throws Throwable {
//1.注册驱动
Class.forName("com.mysql.jdbc.Driver");
}
}
写入后会报错,抛出异常即可,下面如果出现相同的情况,要不就抛出异常,要不就捕获异常。
package com.bingjiu.mysql;
import java.sql.Connection;
import java.sql.DriverManager;
public class JdbkMysql {
public static void main(String[] args) throws Throwable {
//连接数据库
Connection con= DriverManager.getConnection("jdbc:mysql://localhost:3306/student?serverTimezone=UTC","root","root");
}
}
package com.bingjiu.mysql;
import java.sql.Connection;
import java.sql.DriverManager;
public class JdbkMysql {
public static void main(String[] args) throws Throwable {
//连接数据库
Connection con= DriverManager.getConnection("jdbc:mysql://localhost:3306/student?serverTimezone=UTC","root","root");
//验证是否连接到数据库
if(con!=null) {
System.out.println("连接成功!");
}else {
System.out.println("连接失败!");
}
}
}
package com.bingjiu.mysql;
import java.sql.Connection;
import java.sql.DriverManager;
import java.sql.PreparedStatement;
public class JdbkMysql {
public static void main(String[] args) throws Throwable {
//连接数据库
Connection con= DriverManager.getConnection("jdbc:mysql://localhost:3306/student?serverTimezone=UTC","root","root");
if(con!=null) {
System.out.println("连接成功!");
}else {
System.out.println("连接失败!");
}
//sql语句,向我students表中添加一条数据
String sql ="insert into students(学号,姓名,年龄,性别,邮箱,生日,武力值) values(14,'大乔',20,'女','daqiao.qqcom','1998-6-6',6000)";
//创建sql语句执行器
PreparedStatement ps =con.prepareStatement(sql);
//执行语句
int n=ps.executeUpdate();
//判断是否添加成功
if(n>0) {
System.out.println("添加成功!");
}else {
System.out.println("添加失败!");
}
}
}
package com.bingjiu.mysql;
import java.sql.Connection;
import java.sql.DriverManager;
import java.sql.PreparedStatement;
public class JdbkMysql {
public static void main(String[] args) throws Throwable {
//连接数据库
Connection con= DriverManager.getConnection("jdbc:mysql://localhost:3306/student?serverTimezone=UTC","root","root");
if(con!=null) {
System.out.println("连接成功!");
}else {
System.out.println("连接失败!");
}
//sql语句,向我students表中添加一条数据
String sql ="insert into students(学号,姓名,年龄,性别,邮箱,生日,武力值) values(14,'大乔',20,'女','daqiao.qqcom','1998-6-6',6000)";
//创建sql语句执行器
PreparedStatement ps =con.prepareStatement(sql);
//执行语句
int n=ps.executeUpdate();
//判断是否添加成功
if(n>0) {
System.out.println("添加成功!");
}else {
System.out.println("添加失败!");
}
//断开连接
ps.close();
con.close();
System.out.println("已断开连接");