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();
        }
    }
    
    
  • 相关阅读:
    PPT_标题
    产品需求撰写-架构图
    测试
    SparkLauncher 1.6 版本bug
    Github fork同步
    Maven 配置远程仓库
    Sqoop2中传入配置文件中url之【坑】
    Spark性能优化-coalesce(n)
    面试算法题目
    Git 基本概念及常用命令
  • 原文地址:https://www.cnblogs.com/xiaxiaopi/p/14376802.html
Copyright © 2011-2022 走看看