zoukankan      html  css  js  c++  java
  • jdbc

    JDBC模板

    public class mysql {
        public static void main(String[] args) throws ClassNotFoundException, SQLException {
            //加载驱动
            Class.forName("com.mysql.jdbc.Driver");
            //用户信息 和url
            String url="jdbc:mysql://localhost:3306/school?serverTimezone=UTC&useUnicode=true&characterEncoding=utf8&useSSL=true";
            String name="root";
            String pwd="123456";
            //连接成功,得到数据库对象
            Connection connection = DriverManager.getConnection(url, name, pwd);
            //执行sql的对象statement
            Statement statement = connection.createStatement();
            //执行sql的对象去执行sql语句
            String sql="select * from users";
            ResultSet resultSet = statement.executeQuery(sql);
            while(resultSet.next()){
                System.out.println("id"+resultSet.getObject("id"));
                System.out.println("NAME"+resultSet.getObject("NAME"));
                System.out.println("PASSWORD"+resultSet.getObject("PASSWORD"));
                System.out.println("email"+resultSet.getObject("email"));
                System.out.println("birthday"+resultSet.getObject("birthday"));
            }
            //释放连接
            resultSet.close();
            statement.close();
            connection.close();
        }
    }
    
    
  • 相关阅读:
    第五章:向量运算
    第四章:向量
    第三章:多坐标系
    近期一些学习的随笔
    2020高考游记
    寒假集训好题记录
    STL基本用法的一些记录
    2020暑假集训做题记录——数据结构
    2020.12.13~2020.12.20做题记录
    2020.11.30~2020.12.6 做题记录
  • 原文地址:https://www.cnblogs.com/xiaxiaopi/p/14376802.html
Copyright © 2011-2022 走看看