MySQL使用中遇到的error

Posted 奔跑的阿猿

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了MySQL使用中遇到的error相关的知识,希望对你有一定的参考价值。

  • eclipse连接不上数据库
//加载驱动
        //oracal.jdbc.drive.Oracle.Driver
        //com.mysql.jdbc.Driver
        try {
            Class.forName("com.mysql.jdbc.Driver");
        } catch (ClassNotFoundException e) {
    
            e.printStackTrace();
        }
        Connection connection = null;
        try {
            connection = DriverManager.getConnection("jdbc:mysql://localhost:3306/superlee", "Lee", "6666");
        } catch (SQLException e) {
            // TODO Auto-generated catch block
            e.printStackTrace();
        }
        System.out.println(connection);

error:

 

 

 

错误原因: 连接的数据库名错误或连接的数据库未创建(不存在)。

以上是关于MySQL使用中遇到的error的主要内容,如果未能解决你的问题,请参考以下文章

MySQL使用中遇到的error

我在 mysql(js) 中遇到语法错误(错误:ER_PARSE_ERROR)

git项目初次push提示error: failed to push some refs to https://gitee.com/xxxx/gittest.git’解决方案 --九五小庞(代码片段

Django 使用mysql 所遇到问题一:Error loading MySQLdb module

linux中怎么查看mysql数据库版本

关于mysql驱动版本报错解决,Cause: com.mysql.jdbc.exceptions.jdbc4Unknown system variable ‘query_cache_size(代码片段