JAVAEE细细看 数据库 05 - JDBC

JDBC

一. 概念:Java DataBase Connectivity Java 数据库连接, Java语言操作数据库

JDBC本质:其实是官方(sun公司)定义的一套操作所有关系型数据库的规则,即接口。各个数据库厂商去实现这套接口,提供数据库驱动jar包。我们可以使用这套接口(JDBC)编程,真正执行的代码是驱动jar包中的实现类。

二. 快速入门:

步骤:
1. 导入驱动jar包 mysql-connector-java-5.1.37-bin.jar
1.复制mysql-connector-java-5.1.37-bin.jar到项目的libs目录下
2.右键–>Add As Library
2. 注册驱动
3. 获取数据库连接对象 Connection
4. 定义sql
5. 获取执行sql语句的对象 Statement
6. 执行sql,接受返回结果
7. 处理结果
8. 释放资源

// 1. 导入mysql jdbc 驱动jar包
// 2. 注册驱动
Class.forName("com.mysql.jdbc.Driver");
// 3.获取数据库连接对象
Connection connection = DriverManager.getConnection("jdbc:mysql://localhost:3306/db2", "root", "root");
// 定义sql语句
String sql = "update counter set amount = 1500 where id = 1";
// 获取执行sql的执行对象 Statement
Statement statement = connection.createStatement();
// 执行sql
int i = statement.executeUpdate(sql);
// 处理结果
System.out.println(i);

// 释放资源
statement.close();
connection.close();

三. 详解各个对象:

DriverManager
驱动管理对象
功能:
1. 注册驱动:
告诉程序该使用哪一个数据库驱动jar
static void registerDriver(Driver driver) :注册与给定的驱动程序 DriverManager 。
写代码使用: Class.forName(“com.mysql.jdbc.Driver”);
通过查看源码发现:在com.mysql.jdbc.Driver类中存在静态代码块

 static {
		 try {
			java.sql.DriverManager.registerDriver(new Driver());
		 } catch (SQLException E) {
			 throw new RuntimeException("Can't register driver!");
		}
}

注意:mysql5之后的驱动jar包可以省略注册驱动的步骤。

2. 获取数据库连接:
* 方法:static Connection getConnection(String url, String user, String password)
* 参数:
* url:指定连接的路径
* 语法:jdbc:mysql://ip地址(域名):端口号/数据库名称
* 例子:jdbc:mysql://localhost:3306/db3
* 细节:如果连接的是本机mysql服务器,并且mysql服务默认端口是3306,则url可以简写为:jdbc:mysql:///数据库名称
* user:用户名
* password:密码
*Connection:数据库连接对象
功能:
1. 获取执行sql 的对象
* Statement createStatement()
* PreparedStatement prepareStatement(String sql)
2. 管理事务:
* 开启事务:setAutoCommit(boolean autoCommit) :调用该方法设置参数为false,即开启事务
* 提交事务:commit()
* 回滚事务:rollback()

Statement:执行sql的对象
执行sql
1. boolean execute(String sql) :可以执行任意的sql
2. int executeUpdate(String sql) :执行DML(insert、update、delete)语句、DDL(create,alter、drop)语句
* 返回值:影响的行数,可以通过这个影响的行数判断DML语句是否执行成功 返回值>0的则执行成功,反之,则失败。
3. ResultSet executeQuery(String sql) :执行DQL(select)语句

案例:

表中添加一条数据

public class JDBCDemo2 {
    public static void main(String[] args) {

        Connection connection = null;
        Statement statement = null;

        try {
            // 注册jdbc
            Class.forName("com.mysql.jdbc.Driver");
            // 获取连接对象
            connection = DriverManager.getConnection("jdbc:mysql://localhost:3306/db2", "root", "root");
            // 创建sql语句
            String sql = "insert into counter values(null,'赵六',3000)";
            // 创建执行sql语句的对象
            statement = connection.createStatement();
            // 执行sql
            int i = statement.executeUpdate(sql);
            System.out.println("影响的行数是:" + i);

        } catch (ClassNotFoundException e) {
            e.printStackTrace();
        } catch (SQLException e) {
            e.printStackTrace();
        } finally {
            // 释放资源
            if (statement != null) {
                try {
                    statement.close();
                } catch (SQLException e) {
                    e.printStackTrace();
                }
            }
            if (connection != null) {
                try {
                    connection.close();
                } catch (SQLException e) {
                    e.printStackTrace();
                }
            }
        }


    }
}

修改一条数据

public class JDBCDemo3 {
    public static void main(String[] args) {


        Connection connection = null;
        Statement statement = null;

        try {
            // 注册jdbc
            Class.forName("com.mysql.jdbc.Driver");
            // 创建数据库连接对象
             connection = DriverManager.getConnection("jdbc:mysql://localhost:3306/db2", "root", "root");
            // 创建sql语句
            String sql = "update counter set amount = 180000 where id = 3";
            // 创建执行sql语句对象
             statement = connection.createStatement();
            // 执行sql
            int i = statement.executeUpdate(sql);
            System.out.println(i);
            if ( i > 0){
                System.out.println("修改成功!");
            } else {
                System.out.println("修改失败!");
            }

        } catch (ClassNotFoundException e) {
            e.printStackTrace();
        } catch (SQLException e) {
            e.printStackTrace();
        } finally {
            // 释放资源
            if (statement != null) {
                try {
                    statement.close();
                } catch (SQLException e) {
                    e.printStackTrace();
                }
            }
            if (connection != null) {
                try {
                    connection.close();
                } catch (SQLException e) {
                    e.printStackTrace();
                }
            }
        }
    }
}

删除表中的一条数据

public class JDBCDemo4 {
   public static void main(String[] args) {

       Connection connection = null;
       Statement statement = null;
       try {
           // 注册jdbc
           Class.forName("com.mysql.jdbc.Driver");
           // 获取连接
           connection = DriverManager.getConnection("jdbc:mysql://localhost:3306/db2", "root", "root");
           // 创建sql语句
           String sql = "delete from counter where id = 4";
           // 创建执行对象
           statement = connection.createStatement();
           // 执行sql
           int i = statement.executeUpdate(sql);
           if (i > 0) {
               System.out.println("删除成功!");
           } else {
               System.out.println("删除失败!");
           }
       } catch (ClassNotFoundException e) {
           e.printStackTrace();
       } catch (SQLException e) {
           e.printStackTrace();
       } finally {
           // 释放资源
           if (statement != null) {
               try {
                   statement.close();
               } catch (SQLException e) {
                   e.printStackTrace();
               }
           }
           if (connection != null) {
               try {
                   connection.close();
               } catch (SQLException e) {
                   e.printStackTrace();
               }
           }
       }
   }
}

ResultSet:结果集对象,封装查询结果
* boolean next(): 游标向下移动一行,判断当前行是否是最后一行末尾(是否有数据),如果是,则返回false,如果不是则返回true
* getXxx(参数):获取数据
* Xxx:代表数据类型 如: int getInt() , String getString()
* 参数:
1. int:代表列的编号,从1开始 如: getString(1)
2. String:代表列名称。 如: getDouble(“balance”)

  • 注意:
    • 使用步骤:
      1. 游标向下移动一行
      2. 判断是否有数据
      3. 获取数据

//循环判断游标是否是最后一行末尾。

 while(rs.next()){
 //获取数据
	 int id = rs.getInt(1);
	String name = rs.getString("name");
	double balance = rs.getDouble(3);
	System.out.println(id + "---" + name + "---" + balance);
 }
四. 案例:

定义一个方法,查询emp表的数据将其封装为对象,然后装载集合,返回。

public class Counter {
    private int id;
    private String name;
    private double amount;

    public int getId() {
        return id;
    }

    public void setId(int id) {
        this.id = id;
    }

    public String getName() {
        return name;
    }

    public void setName(String name) {
        this.name = name;
    }

    public double getAmount() {
        return amount;
    }

    public void setAmount(double amount) {
        this.amount = amount;
    }
}

public class JDBCDemo6 {
    public static void main(String[] args) {

        // 获取Counter表中所有的数据
        List<Counter> all = findAll();
        for (Counter counter : all) {
            System.out.println(counter.getId() + "," + counter.getName() + "," +counter.getAmount());
        }
    }

    public static List<Counter> findAll() {
        Connection connection = null;
        Statement statement = null;
        ResultSet resultSet = null;
        ArrayList<Counter> list = new ArrayList<>();

        try {
            // 注册jdbc
            Class.forName("com.mysql.jdbc.Driver");
            // 获取连接对象
            connection = DriverManager.getConnection("jdbc:mysql://localhost:3306/db2", "root", "root");
            // sql
            String sql = "select * from Counter";
            // 创建sql语句执行对象
            statement = connection.createStatement();
            // 执行sql
            resultSet = statement.executeQuery(sql);

            // 赋值
            Counter counter = null;
            while (resultSet.next()){
                int id = resultSet.getInt("id");
                String name = resultSet.getString("name");
                double amount = resultSet.getDouble("amount");

                counter = new Counter();
                counter.setId(id);
                counter.setName(name);
                counter.setAmount(amount);
                list.add(counter);
            }

        } catch (ClassNotFoundException e) {
            e.printStackTrace();
        } catch (SQLException e) {
            e.printStackTrace();
        } finally {
            // 释放资源
            if (resultSet != null ) {
                try {
                    resultSet.close();
                } catch (SQLException e) {
                    e.printStackTrace();
                }
            }
            if (statement != null ) {
                try {
                    statement.close();
                } catch (SQLException e) {
                    e.printStackTrace();
                }
            }
            if (connection != null ) {
                try {
                    connection.close();
                } catch (SQLException e) {
                    e.printStackTrace();
                }
            }
        }

        return list;
    }
}

提取工具类

.Properties 文件
url=jdbc:mysql://localhost:3306/db2
driver=com.mysql.jdbc.Driver
user=root
password=root

JDBCUtil 工具类
public class JDBCUtil {

    static String url = null;
    static String user = null;
    static String password = null;
    static String driver = null;
    
    static {
        // 获取classLoader
        ClassLoader classLoader = JDBCUtil.class.getClassLoader();
        // 获取文件的路劲
        URL res = classLoader.getResource("jdbc.properties");
        // 读取数据
        Properties properties = new Properties();
        try {
            properties.load(new FileReader(res.getPath()));
            url = properties.getProperty("url");
           user = properties.getProperty("user");
           password = properties.getProperty("password");
           driver = properties.getProperty("driver");

           // 加载数据
           Class.forName(driver);

        } catch (IOException e) {
            e.printStackTrace();
        } catch (ClassNotFoundException e) {
            e.printStackTrace();
        }
    }

    private JDBCUtil() {

    }

    public static Connection getConnect() throws SQLException {

        return DriverManager.getConnection(url,user,password);

    }


    public static void close(Connection connection, Statement statement){
        if (statement != null) {
            try {
                statement.close();
            } catch (SQLException e) {
                e.printStackTrace();
            }
        }
        if (connection != null) {
            try {
                connection.close();
            } catch (SQLException e) {
                e.printStackTrace();
            }
        }
    }

    public static void close(Connection connection, Statement statement, ResultSet resultSet){
        if (resultSet != null) {
            try {
                resultSet.close();
            } catch (SQLException e) {
                e.printStackTrace();
            }
        }
        if (statement != null) {
            try {
                statement.close();
            } catch (SQLException e) {
                e.printStackTrace();
            }
        }
        if (connection != null) {
            try {
                connection.close();
            } catch (SQLException e) {
                e.printStackTrace();
            }
        }
    }


}

PreparedStatement:执行sql的对象

  1. SQL注入问题:在拼接sql时,有一些sql的特殊关键字参与字符串的拼接。会造成安全性问题
 输入用户随便,输入密码:a' or 'a' = 'a
 sql:select * from user where username = 'fhdsjkf' and password = 'a' or 'a' = 'a' 
  1. 解决sql注入问题:使用PreparedStatement对象来解决

  2. 预编译的SQL:参数使用?作为占位符

  3. 步骤:
    1. 导入驱动jar包 mysql-connector-java-5.1.37-bin.jar
    2. 注册驱动
    3. 获取数据库连接对象 Connection
    4. 定义sql
    * 注意:sql的参数使用?作为占位符。 如:select * from user where username = ? and password = ?;
    5. 获取执行sql语句的对象 PreparedStatement Connection.prepareStatement(String sql)
    6. 给?赋值:
    * 方法: setXxx(参数1,参数2)
    * 参数1:?的位置编号 从1 开始
    * 参数2:?的值
    7. 执行sql,接受返回结果,不需要传递sql语句
    8. 处理结果
    9. 释放资源

      注意:后期都会使用PreparedStatement来完成增删改查的所有操作
     		1. 可以防止SQL注入
     		2. 效率更高
    
五. 抽取JDBC工具类 : JDBCUtils
* 目的:简化书写
* 分析:
	1. 注册驱动也抽取
	2. 抽取一个方法获取连接对象
		* 需求:不想传递参数(麻烦),还得保证工具类的通用性。
		* 解决:配置文件
			jdbc.properties
				url=
				user=
				password=
3. 抽取一个方法释放资源
public class JDBCUtil {
private static String url;
private static String username;
private static String pwd;
private static String driver;

// 静态代码块
static {
    ClassLoader cl = JDBCUtil.class.getClassLoader();
   // URL resource = cl.getResource("jdbc.properties");
    InputStream ras = cl.getResourceAsStream("jdbc.properties");

    // 读取
    Properties prop = new Properties();
    try {
        prop.load(ras);
        url = prop.getProperty("url");
        username = prop.getProperty("username");
        pwd = prop.getProperty("pwd");
        driver =prop.getProperty("driver");

        // 注册
        Class.forName(driver);

    } catch (IOException e) {
        e.printStackTrace();
    } catch (ClassNotFoundException e) {
        e.printStackTrace();
    }

}

public static Connection getConnect() throws SQLException {
    return DriverManager.getConnection(url,username,pwd);
}

public static void close(Connection connection, Statement statement, ResultSet resultSet){
    if (connection != null){
        try {
            connection.close();
        } catch (SQLException e) {
            e.printStackTrace();
        }
    }

    if (statement != null){
        try {
            statement.close();
        } catch (SQLException e) {
            e.printStackTrace();
        }
    }

    if (resultSet != null){
        try {
            resultSet.close();
        } catch (SQLException e) {
            e.printStackTrace();
        }
    }


}

public static void close(AutoCloseable... closer) {

    if (closer == null){
        return;
    }

    // 释放资源
    for (AutoCloseable obj : closer) {
        // 判断是否为空,
        if (obj != null) {
            // 关闭
            try {
                obj.close();
            } catch (Exception e) {
                e.printStackTrace();
            }
        }
    }
}
六. 案例
  • 需求:
    1. 通过键盘录入用户名和密码
    2. 判断用户是否登录成功
public class JDBC_login {
    public static void main(String[] args) {

        // 登录
        Scanner sc = new Scanner(System.in);
        System.out.println("请输入姓名:");
        String username = sc.next();
        System.out.println("请输入密码:");
        String pwd = sc.next();

        // 测试
        boolean login = login(username, pwd);
        if (login) {
            System.out.println("登录成功!");
        } else  {
            System.out.println("账号或密码错误!!!");
        }

    }

    /**
     * 测试登录
     */
    public static boolean login(String username, String pwd) {

        if (username == null || pwd == null) {
            return false;
        }

        Connection connect = null;
        PreparedStatement ps = null;
        ResultSet resultSet = null;
        try {
            // 获得连接对象
             connect = JDBCUtil.getConnect();
            // 开启事务
            connect.setAutoCommit(false);
            // 创建 sql执行器
            String sql = "select * from user where uname = ? and pwd = ?";
            ps = connect.prepareStatement(sql);
            ps.setString(1,username);
            ps.setString(2,pwd);
             resultSet = ps.executeQuery();
             connect.commit();
            return resultSet.next();
        } catch (SQLException e) {
            e.printStackTrace();
            if (connect != null) {
                try {
                    connect.rollback();
                } catch (SQLException ex) {
                    ex.printStackTrace();
                }
            }
        } finally {
            JDBCUtil.close(resultSet,ps,connect);
        }
        return false;
    }
}

七. JDBC控制事务:
1. 事务:一个包含多个步骤的业务操作。如果这个业务操作被事务管理,则这多个步骤要么同时成功,要么同时失败。
2. 操作:
	1. 开启事务
	2. 提交事务
	3. 回滚事务
3. 使用Connection对象来管理事务
	* 开启事务:setAutoCommit(boolean autoCommit) :调用该方法设置参数为false,即开启事务
		* 在执行sql之前开启事务
	* 提交事务:commit() 
		* 当所有sql都执行完提交事务
	* 回滚事务:rollback() 
		* 在catch中回滚事务

4. 代码:
	public class JDBCDemo10 {

	    public static void main(String[] args) {
	        Connection conn = null;
	        PreparedStatement pstmt1 = null;
	        PreparedStatement pstmt2 = null;
	
	        try {
	            //1.获取连接
	            conn = JDBCUtils.getConnection();
	            //开启事务
	            conn.setAutoCommit(false);
	
	            //2.定义sql
	            //2.1 张三 - 500
	            String sql1 = "update account set balance = balance - ? where id = ?";
	            //2.2 李四 + 500
	            String sql2 = "update account set balance = balance + ? where id = ?";
	            //3.获取执行sql对象
	            pstmt1 = conn.prepareStatement(sql1);
	            pstmt2 = conn.prepareStatement(sql2);
	            //4. 设置参数
	            pstmt1.setDouble(1,500);
	            pstmt1.setInt(2,1);
	
	            pstmt2.setDouble(1,500);
	            pstmt2.setInt(2,2);
	            //5.执行sql
	            pstmt1.executeUpdate();
	            // 手动制造异常
	            int i = 3/0;
	
	            pstmt2.executeUpdate();
	            //提交事务
	            conn.commit();
	        } catch (Exception e) {
	            //事务回滚
	            try {
	                if(conn != null) {
	                    conn.rollback();
	                }
	            } catch (SQLException e1) {
	                e1.printStackTrace();
	            }
	            e.printStackTrace();
	        }finally {
	            JDBCUtils.close(pstmt1,conn);
	            JDBCUtils.close(pstmt2,null);
	        }
	
	
	    }
	
	}
  • 1
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值