猿问

收到错误消息“SQL 状态:08001 找不到适合 jdbc:oracle:thin:

有人可以建议我在这里做错了什么:


获取错误消息为“ SQL 状态:08001 没有找到适合 jdbc:oracle:thin:@128:23:44:01:12345:pppp_rr 的驱动程序 Picked up JAVA_TOOL_OPTIONS: -Duser.home=C:\Users\123ert ”


import java.sql.Connection;

import java.sql.DriverManager;

import java.sql.SQLException;


public class JDBCExample {


    public static void main(String[] args) {


        try (Connection conn = DriverManager.getConnection(

                "jdbc:oracle:thin:@128:23:44:01:12345:pppp_rr", "Test123", "********")) {


            if (conn != null) {

                System.out.println("Connected to the database!");

            } else {

                System.out.println("Failed to make connection!");

            }


        } catch (SQLException e) {

            System.err.format("SQL State: %s\n%s", e.getSQLState(), e.getMessage());

        } catch (Exception e) {

            e.printStackTrace();

        }


    }

}

胡子哥哥
浏览 175回答 1
1回答

Qyouu

我无法使用 Oracle 数据库对其进行准确测试,但我知道在建立连接之前必须注册一个驱动程序。检查以下代码,这基本上是您的代码加上驱动程序注册。public static void main(String args[]) throws Exception {    // registration for the driver, it's needed,     // otherwise there will be "no suitable driver found"    Class.forName("oracle.jdbc.driver.OracleDriver");    try (Connection conn = DriverManager.getConnection(            "jdbc:oracle:thin:@128:23:44:01:12345:pppp_rr", "Test123", "********")) {        if (conn != null) {            System.out.println("Connected to the database!");        } else {            System.out.println("Failed to make connection!");        }    } catch (SQLException e) {        System.err.format("SQL State: %s\n%s", e.getSQLState(), e.getMessage());    } catch (Exception e) {        e.printStackTrace();    }}
随时随地看视频慕课网APP

相关分类

Java
我要回答