JAVA JDBC 简单的增删改查

本文通过一个具体的Java JDBC示例,展示了如何使用JDBC进行数据库的基本CRUD操作,包括连接数据库、插入记录、删除记录、更新记录及查询记录。
package jdbc_util;

import java.sql.Connection;
import java.sql.DriverManager;
import java.sql.PreparedStatement;
import java.sql.ResultSet;
import java.sql.SQLException;
import java.sql.Statement;

public class JdbcDemo {
    // 设置汉字编码 useUnicode=true&characterEncoding=UTF-8
    String jdbcUrl = "jdbc:mysql://localhost:3306/test?useUnicode=true&characterEncoding=UTF-8";
    String className = "com.mysql.jdbc.Driver";
    String user = "root";
    String password = "920619";

    public Connection getConnection() {
        Connection connection = null;
        try {
            // 加载数据库驱动
            Class.forName(className);
            // 获取数据库连接
            connection = DriverManager.getConnection(jdbcUrl, user, password);
        } catch (Exception e) {
            System.out.println("连接失败");
        }
        return connection;
    }

    public void closeConnection(Connection connection) {
        try {
            connection.close();
            System.out.println("关闭成功");
        } catch (SQLException e) {
            System.out.println("关闭失败");
        }
    }

    public void insert() {
        String sql = "insert into user (UserName,PassWord,UserAge,UserSex) values('丙','123456', 20, 0)";
        Connection connection = getConnection();
        try {
            //获取数据库操作类
            Statement statement = connection.createStatement();
            //执行 SQL 语句并返回结果
            int result = statement.executeUpdate(sql);
            if (result != 0) {
                System.out.println("操作成功,受影响" + result + "行");
            }
            statement.close();
        } catch (SQLException e) {
            System.out.println("操作失败");
        } finally {
            closeConnection(connection);
        }
    }

    public void delete() {
        String sql = "delete from user where UserId in (2,3,4)";
        Connection connection = getConnection();
        try {
            Statement statement = connection.createStatement();
            int result = statement.executeUpdate(sql);
            if (result != 0) {
                System.out.println("操作成功,受影响" + result + "行");
            }
            statement.close();
        } catch (SQLException e) {
            System.out.println("操作失败");
        } finally {
            closeConnection(connection);
        }
    }
    
    public void update() {
        String sql = "update user set UserName = '乙' where UserId = 5";
        Connection connection = getConnection();
        try {
            Statement statement = connection.createStatement();
            int result = statement.executeUpdate(sql);
            if (result != 0) {
                System.out.println("操作成功,受影响" + result + "行");
            }
            statement.close();
        } catch (SQLException e) {
            System.out.println("操作失败");
        } finally {
            closeConnection(connection);
        }
    }
    
    public void select() {
        //带参数的  SQL 语句, 要设置的值用 ? 占位
        String sql = "select * from user where UserId = ?";
        Connection connection = getConnection();
        try {
            //传递 SQL 语句
            PreparedStatement statement = connection.prepareStatement(sql);
            //设置 SQL 语句中占位符的值
            statement.setInt(1, 1);
            ResultSet resultSet = statement.executeQuery();
            while (resultSet.next()) {
                System.out.println("UserName = " + resultSet.getString("UserName"));
                System.out.println("PassWord = " + resultSet.getString("PassWord"));
                System.out.println("UserAge = " + resultSet.getInt("UserAge"));
                String userSex = resultSet.getInt("UserSex") == 1 ? "男" : "女";
                System.out.println("UserSex = " + userSex);
            }
            resultSet.close();
            statement.close();
        } catch (SQLException e) {
            System.out.println("操作失败");
        } finally {
            closeConnection(connection);
        }
    }
}

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值