我是靠谱客的博主 酷炫草丛,最近开发中收集的这篇文章主要介绍使用JAVA jdbc编写一段快速连接Mysql数据库,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

使用JAVA jdbc编写一段快速连接Mysql数据库

第一次写文档,看的人轻喷。做一个简单记录

话不多说,下面直接上代码。

public static void main(String[] args) {
        Connection conn = null;
        String sql;
//        String url = "jdbc:mysql://localhost:3306/test?" +
//                "user=root&password=root&useUnicode=true&characterEncoding=utf8&useSSL=false&serverTimezone=GMT";
        String url = "jdbc:mysql://localhost:3306/test?useUnicode=true&characterEncoding=utf8&useSSL=false&serverTimezone=GMT";
        String user = "root";
        String password = "root";
        try {
            Class.forName("com.mysql.jdbc.Driver");
            log.info("成功加载MySql驱动程序");
            conn = DriverManager.getConnection(url, user, password);
            Statement stmt = conn.createStatement();
            sql = "create table student(No char(30), name varchar(30), primary key(No))";
            int result = stmt.executeUpdate(sql);
            if (result != -1) {
                log.info("创建数据表成功");
                sql = "insert into student(no, name) values ('201901', 'sui123')";
                result = stmt.executeUpdate(sql);
                sql = "insert into student(no, name) values ('201902', 'ya123')";
                result = stmt.executeUpdate(sql);
                sql = "select * from student";
                ResultSet rs = stmt.executeQuery(sql);
                while (rs.next()) {
                    log.info(rs.getString(1) + "t" + rs.getString(2));
                }
            }
        } catch (ClassNotFoundException e) {
            log.error("没有找到驱动类");
            throw new RuntimeException("没有找到加载类");
        } catch (SQLException e) {
            log.error("sql不正确", e.getMessage(), e);
            throw new RuntimeException("sql不正确");
        } finally {
            try {
                conn.close();
            } catch (SQLException e) {
                log.error("关闭连接失败");
                throw new RuntimeException("关闭连接失败");
            }
        }
    }

这样

最后

以上就是酷炫草丛为你收集整理的使用JAVA jdbc编写一段快速连接Mysql数据库的全部内容,希望文章能够帮你解决使用JAVA jdbc编写一段快速连接Mysql数据库所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(46)

评论列表共有 0 条评论

立即
投稿
返回
顶部