JDBC 连接mysql 详解

什么是JDBC

JDBC(Java DataBase Connectivity,java数据库连接)是一种用于执行SQL语句的Java API,可以为多种关系数据库提供统一访问,它由一组用Java语言编写的类和接口组成。

其拥有四个核心类:
1. DriverManager 创建连接
2. Connection 连接类
3. Statement 执行sql语句的
4. ResultSet 结果集

JDBC运行机制
这里写图片描述

下载地址: https://download.csdn.net/download/forevernagisa/10302957

JDBC 连接 分为六大步骤:
1. 注册驱动
2. 获取连接 Connection
3. 获取sql语句的执行对象 Statement
4. 执行sql语句 返回结果集 ResultSet
5. 处理结果集
6. 关闭资源

代码示例:

public class Demo01 {
    public static void main(String[] args) throws SQLException, ClassNotFoundException {
        // 注册驱动
        // 这种注册方式 相当于 注册了2遍 
        // Driver 类内部的静态代码块已经注册一遍了
        // DriverManager.registerDriver(new Driver());
        // 直接把该类加载到内存当中 参数应当是 全限定类名
        // 包名 + 类名
        Class.forName("com.mysql.jdbc.Driver");
        // 获取连接对象 一
        // url 访问数据库的链接地址
        //Connection connection = DriverManager.getConnection("jdbc:mysql://localhost:3306/myjdbc", "root", "123456");

        // 获取连接方式 二
        // 这里使用Properties 集合 具体用法请参考之前写的博客 <https://blog.csdn.net/ForeverNagisa/article/details/79233931>
        Properties info = new Properties();
        // 添加用户名密码
        // 注意键值正确性
//      info.put("user", "root");
//      info.put("password", "123456");
//      Connection connection = DriverManager.getConnection("jdbc:mysql://localhost:3306/myjdbc", info);

        // 获取连接方式 三
        String url = "jdbc:mysql://localhost:3306/myjdbc?user=root&password=123456";
        Connection connection = DriverManager.getConnection(url);

        // 获取执行sql语句的对象 Statement
        Statement statement = connection.createStatement();
        // 执行sql语句 返回结果集
        // 字段查询语句 结果集中填的索引要和查询语句中的字段对应
        String sql = "select * from users";
        ResultSet executeQuery = statement.executeQuery(sql);
        // 处理结果集
        // 循环遍历 输出结果
        // next()方法返回是布尔值 有数据返回true
        while (executeQuery.next()) {
            // 注意:查询数据库时 索引从1开始
            System.out.println(executeQuery.getObject(1));
        }
        // 关闭资源
        executeQuery.close();
        statement.close();
        connection.close();
    }
}
// 查询 更新 删除 添加 操作都可以使用上述代码操作 但是不免有些繁琐 重复代码又过多
// 因此 我们急需一个工具类能将这些增删改查的代码都聚合起来 使用时只需要调用就好

JDBC工具类

JDBCUtil.class

public class JDBCUtil {
    // 使用静态代码块加载驱动 读取配置文件
    // 为了提高容错率 我们应该尽可能的让修改配置变得更加容易操作 而不是在打开代码进行修改
    // 因此在本地自行创建配置文件是有必要的 将一些必要的连接信息写入进去 日后修改配置就方便很多
    private static String driverClass;
    private static String url;
    private static String user;
    private static String password;
    static {
//      Properties properties = new Properties();
//      // 利用集合读取文本
//      try {
//          FileInputStream fis = new FileInputStream("src/dbinfo.properties");
//          properties.load(fis);
//          driverClass = properties.getProperty("driverClass");
//          url = properties.getProperty("url");
//          user = properties.getProperty("user");
//          password = properties.getProperty("password");
//      } catch (IOException e) {
//          // TODO Auto-generated catch block
//          e.printStackTrace();
//      }
        // 使用系统类来读取配置文件
        ResourceBundle rb = ResourceBundle.getBundle("dbinfo");
        // 获取文件中的数据
        driverClass = rb.getString("driverClass");
        url = rb.getString("url");
        user = rb.getString("user");
        password = rb.getString("password");

        // 让驱动类只加载一次
        try {
            Class.forName(driverClass);
        } catch (ClassNotFoundException e) {
            // TODO Auto-generated catch block
            e.printStackTrace();
        }
    }

    // 获取数据库连接的方法
    public static Connection getConnection() throws SQLException {
        return DriverManager.getConnection(url, user, password);
    }

    // 关闭数据库的方法 如果没有结果集需要关闭 直接传Null 就行
    public static void closeAll(ResultSet resultSet, Statement statement, Connection connection) {
        if (resultSet != null) {
            try {
                resultSet.close();
            }
            catch (SQLException e) {
            throw new RuntimeException("关闭失败");
        }
            // 加快系统回收的速度♻️
            resultSet = null;
        } 
        if (statement != null) {
            try {
                statement.close();
            }
            catch (SQLException e) {
            throw new RuntimeException("关闭失败");
        }
            // 加快系统回收的速度♻️
            statement = null;
        } 
        if (connection != null) {
            try {
                connection.close();
            }
            catch (SQLException e) {
            throw new RuntimeException("关闭失败");
        }
            // 加快系统回收的速度♻️
            connection = null;
        } 
    }
}
// 配置文件
//driverClass=com.mysql.jdbc.Driver
//url=jdbc:mysql://localhost:3306/myjdbc
//user=root
//password=123456

JDBC 连接 mysql 登陆练习

登陆类

public class Login {
    public static void main(String[] args) throws SQLException {
        // 接收用户输入的账号和密码
        System.out.println("请输入账号:");
        Scanner scanner = new Scanner(System.in);
        String name = scanner.nextLine();
        System.out.println("请输入密码:");
        String password = scanner.nextLine();

        // 调用查询方法
        if (DoLogin.findUser(name, password) != null) {
            System.out.println("登录成功");
            System.out.println(DoLogin.findUser(name, password));

        }else {
            System.out.println("账号或密码错误");
        }
    }
}

信息查询类

public class DoLogin {
    // 通过用户名 密码 查找用户
    public static Users findUser(String name, String password) throws SQLException {
        // 使用字符串拼接的话需要注意这个问题!
        // sql 语句注入问题 添加一个恒成立的条件 
        String sql = "select * from users where name=? and password=?";
        // 查询数据库
        Connection connection = JDBCUtil.getConnection();
        // 应当使用 PreparedStatement 类
        PreparedStatement statement = connection.prepareStatement(sql);
        // 参数1 填索引 参数2 sql语句中问号索引
        statement.setString(1, name);
        statement.setString(2, password);

        ResultSet executeQuery = statement.executeQuery();
        Users users = new Users();
        if (executeQuery.next()) {
            users.setId(executeQuery.getInt("id"));
            users.setName(executeQuery.getString("name"));
            users.setPassword(executeQuery.getString("password"));
            users.setEmail(executeQuery.getString("email"));
            users.setBrithday(executeQuery.getDate("birthday"));
        }else {
            users = null;
        }
        JDBCUtil.closeAll(executeQuery, statement, connection);
        return users;       
    }
}

如何测试一个方法的执行

使用@Test 注解 导入Junit包

代码举例:

@Test
    public void name() {
        System.out.println("运行");
    }

可以逐个方法进行测试!

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值