Java && Jdbc的开发流程

配置文件properties

在src文件下new一个file,命名为XXX.properties
在这里插入图片描述

jdbc.properties配置文件

mysql.drive=com.mysql.jdbc.Driver
mysql.url=jdbc:mysql://49.232.23.173:33306/te>st?>useUnicode=true&characterEncoding=utf8&us>eSSL=false
mysql.username=root
mysql.password=root
//  类加载器,加载配置文件,获取当前配置文件的路径
            ClassLoader classLoader = JdbcUtils.class.getClassLoader();
            //  加载当前工程中的配置文件,指定名称
            URL resource = classLoader.getResource("com/zr/jdbc.properties");
            //  获取配置文件所在的真正位置
            String path = resource.getPath();
            System.out.println(path);
            //  文件加载类,目的是读取里边的内容
            Properties properties = new Properties();

1、步骤

  1. 导入驱动 jar 包 mysql-connector-java-5.1.37-bin.jar
  2. 注册驱动
  3. 获取数据库连接对象 Connection
  4. 定义 sql
  5. 获取执行 sql 语句的对象 Statement
  6. 执行 sql,接受返回结果
  7. 处理结果
  8. 释放资源
public class JdbcUtils {
    private static Connection connection = null;
    /**通过配置文件注册驱动*/
    static{
        //2. 注册驱动  确认要连的数据
        try {
            //  类加载器,加载配置文件,获取当前配置文件的路径
            ClassLoader classLoader = JdbcUtils.class.getClassLoader();
            //  加载当前工程中的配置文件,指定名称
            URL resource = classLoader.getResource("com/zr/jdbc.properties");
            //  获取配置文件所在的真正位置
            String path = resource.getPath();
            
            System.out.println(path);
            //  文件加载类,目的是读取里边的内容
            Properties properties = new Properties();
            properties.load(new FileReader(path));
            System.out.println(properties.get("mysql.drive"));
            System.out.println(properties.get("mysql.url"));
            System.out.println(properties.get("mysql.username"));
            System.out.println(properties.get("mysql.password"));

            Class.forName(properties.getProperty("mysql.drive"));
            //  3、获取数据库连接对象 Connection
            connection=DriverManager.getConnection(
                    properties.getProperty("mysql.url"),
                    properties.getProperty("mysql.username"),
                    properties.getProperty("mysql.password"));
        } catch (ClassNotFoundException e) {
            e.printStackTrace();
        }catch (SQLException e) {
            e.printStackTrace();
        }catch (IOException e) {
            e.printStackTrace();
        }

    }

    //  获取连接
    public static Connection getConnection(){
        return connection;
    }
    //  关闭相关资源
    public static void close(ResultSet resultSet, Statement statement,Connection connection){
        try {
            if(resultSet != null){
                resultSet.close();
            }
            if(statement != null){
                statement.close();
            }
            if(connection != null){
                connection.close();
            }
        }catch (SQLException e){
            e.printStackTrace();
        }
    }
}

jdbc.properties文件放在src根目录下时,不需要写相对路径

/**jdbc CRUD操作*/
public class JdbcTest05 {
    private static ResultSet resultSet = null;
    private static Connection connection = null;
    private static PreparedStatement preparedStatement = null;

    public static void main(String[] args) {
        try{
            //  3获取连接
            connection = JdbcUtils.getConnection();
            //  4定义sql
            String sql="select * from dept where did=?";
            //  5获取执行sql语句的对象Statement
            preparedStatement = connection.prepareStatement(sql);
            preparedStatement.setLong(1,1); // 第一个,did为1
            //  6.执行sql,接受返回结果
            ResultSet resultSet = preparedStatement.executeQuery();
            //  7.处理结果
            while (resultSet.next()){
                System.out.println("dep_name");
            }
        }catch (SQLException e){
            e.printStackTrace();
        }finally {
            JdbcUtils.close(resultSet,preparedStatement,connection);
        }
    }
}

2、新增,删除,查询

//新增
	int i = statement.executeUpdate("insert into
	t_student(s_id) values (11111)");
// 删除
	int i = statement.executeUpdate("delete from t_student
	where s_id=11111");
// 查询 1
	ResultSet rs = statement.executeQuery("select * from
	t_student");
	while(rs.next()) {
		System.out.println(rs.getString("s_name"));
	}

// 查询 2
//条件查询,使用另外一个 api
	String sql = "select * from t_student where s_name like ?";
	PreparedStatement ps = conn.prepareStatement(sql);
	ps.setString(1,"赵%");
	ResultSet rs = ps.executeQuery();
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值