JDBC
一,JDBC的介绍
1、JDBC是什么?
Java DataBase Connectivity(Java语言连接数据库)
2、JDBC的本质是什么?
JDBC是SUN公司制定的一套接口(interface)
java.sql.*; (这个软件包下有很多接口。)
接口都有调用者和实现者。
面向接口调用、面向接口写实现类,这都属于面向接口编程。
为什么要面向接口编程?
解耦合:降低程序的耦合度,提高程序的扩展力。
多态机制就是非常典型的:面向抽象编程。(不要面向具体编程)
建议:
Animal a = new Cat();
Animal a = new Dog();
// 喂养的方法
public void feed(Animal a){ // 面向父类型编程。
}
不建议:
Dog d = new Dog();
Cat c = new Cat();
思考:为什么SUN制定一套JDBC接口呢?
因为每一个数据库的底层实现原理都不一样。
Oracle数据库有自己的原理。
MySQL数据库也有自己的原理。
MS SqlServer数据库也有自己的原理。
....
每一个数据库产品都有自己独特的实现原理。
JDBC的本质到底是什么?
一套接口。
3、JDBC开发前的准备工作,先从官网下载对应的驱动jar包,然后将其配置到环境变量classpath当中。
classpath=.;D:\course\06-JDBC\resources\MySql Connector Java 5.1.23\mysql-connector-java-5.1.23-bin.jar
以上的配置是针对于文本编辑器的方式开发,使用IDEA工具的时候,不需要配置以上的环境变量。
IDEA有自己的配置方式。
4、JDBC编程六步(需要背会)
第一步:注册驱动(作用:告诉Java程序,即将要连接的是哪个品牌的数据库)
第二步:获取连接(表示JVM的进程和数据库进程之间的通道打开了,这属于进程之间的通信,重量级的,使用完之后一定要关闭通道。)
第三步:获取数据库操作对象(专门执行sql语句的对象)
第四步:执行SQL语句(DQL DML....)
第五步:处理查询结果集(只有当第四步执行的是select语句的时候,才有这第五步处理查询结果集。)
第六步:释放资源(使用完资源之后一定要关闭资源。Java和数据库属于进程间的通信,开启之后一定要关闭。)
二,JDBC原理示意图和模拟

String url = "jdbc:mysql://localhost:3306/bowen123?useUnicode=true&characterEncoding=UTF-8";
1,连接数据库的五种方式
//方式一 Driver driver = new Driver(); //创建driver对象 String url = "jdbc:mysql://localhost:3306/bowen123?useUnicode=true&characterEncoding=UTF-8"; //将用户名和密码放入properties对象 Properties properties = new Properties(); properties.setProperty("user","root"); properties.setProperty("password","123456"); Connection connect = driver.connect(url, properties); System.out.println("方式一"+ connect); //==========================================
//方式二 通过反射加载Driver类,动态加载 更加灵活,减少依赖性 Class<?> aClass = Class.forName("com.mysql.jdbc.Driver"); Driver driver = (Driver)aClass.newInstance(); String url = "jdbc:mysql://localhost:3306/bowen123?useUnicode=true&characterEncoding=UTF-8"; //将用户名和密码放入properties对象 Properties properties = new Properties(); properties.setProperty("user","root"); properties.setProperty("password","123456"); Connection connect = driver.connect(url, properties); System.out.println(connect); //============================================== //方式三 使用 DriverManager 替换 Driver进行同统一管理 //使用反射机制加载Driver Class<?> aClass = Class.forName("com.mysql.jdbc.Driver"); Driver driver =(Driver) aClass.newInstance(); String url = "jdbc:mysql://localhost:3306/bowen123?useUnicode=true&characterEncoding=UTF-8"; String user = "root"; String password = "123456"; DriverManager.registerDriver(driver); //注册driver驱动 Connection connection = DriverManager.getConnection(url, user, password); System.out.println("方式三" + connection); //================================================== //方式4,使用Class.forName 自动完成注册驱动 简化代码 Class<?> aClass = Class.forName("com.mysql.jdbc.Driver"); Driver driver =(Driver) aClass.newInstance(); String url = "jdbc:mysql://localhost:3306/bowen123?useUnicode=true&characterEncoding=UTF-8"; String user = "root"; String password = "123456"; Connection connection = DriverManager.getConnection(url, user, password); System.out.println("方式四" + connection); //========================================= //方式五 在方式四的基础上改进 Properties properties = new Properties(); properties.load(new FileInputStream("java1225\\src\\mysql.properties")); String url = properties.getProperty("url"); String user = properties.getProperty("user"); String password = properties.getProperty("password"); String driver = properties.getProperty("driver"); Class.forName(driver); Connection connection = DriverManager.getConnection(url, user, password); System.out.println("方式五" + connection); //mysql.properties
url=jdbc:mysql://localhost:3306/bowen123?useUnicode=true&characterEncoding=UTF-8
user=root
password=123456
driver=com.mysql.jdbc.Driver
三,结果集
基本介绍

代码演示
import com.mysql.jdbc.Driver; import java.sql.*; import java.util.Properties; public class Connect02 { public static void main(String[] args) throws ClassNotFoundException, IllegalAccessException, InstantiationException, SQLException { //注册驱动 Class<?> aClass = Class.forName("com.mysql.jdbc.Driver"); Driver driver =(Driver) aClass.newInstance(); Properties properties = new Properties(); String url = "jdbc:mysql://localhost:3306/bowen123?useUnicode=true&characterEncoding=UTF-8"; properties.setProperty("user","root"); properties.setProperty("password" , "123456"); //获取连接 Connection connect = driver.connect(url, properties); //得到 statement Statement statement = connect.createStatement(); //执行sql语句 String sql = "select * from actor"; //返回结果集 类似于一张表,并用while取出 ResultSet resultSet = statement.executeQuery(sql); while (resultSet.next()){ //光标后移,如果后面没有就是false int id = resultSet.getInt(1); //获取该行第一列 String name = resultSet.getString(2); //获取该行第二列 String sex = resultSet.getString(3); Date born = resultSet.getDate(4); String phone = resultSet.getString(5); System.out.println(id + "\t" + name +"\t" + sex +"\t" + born +"\t" + phone); } resultSet.close(); statement.close(); connect.close(); } }
四,Statement
基本介绍:


浙公网安备 33010602011771号