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();
        }
    }
    
    
  • 相关阅读:
    leepcode题目解析4
    Python爬虫6-利用ProxyHandler设置代理服务器
    Python爬虫5-利用usergent伪装访问方式
    Python爬虫4-URLError与HTTPError
    Python爬虫3-parse编码与利用parse模拟post请求
    中间件
    跨域
    ORM中的锁和事务
    cookie和session
    之Ajax
  • 原文地址:https://www.cnblogs.com/xiaxiaopi/p/14376802.html
Copyright © 2011-2022 走看看