为了账号安全,请及时绑定邮箱和手机立即绑定

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

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

胡子哥哥 2023-04-13 14:14:59
有人可以建议我在这里做错了什么:获取错误消息为“ 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();        }    }}
查看完整描述

1 回答

?
Qyouu

TA贡献1786条经验 获得超11个赞

我无法使用 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();

    }

}


查看完整回答
反对 回复 2023-04-13
  • 1 回答
  • 0 关注
  • 174 浏览

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信