telnet 10.21.106.31 1521 能通吗?

解决方案 »

  1.   

    jbuilder的示例个是:dbc:oracle:thin:@hostname:1521:ORCL,是不是少了@.我要去米西,如果你侧不通再给我发mail,保证解决。
      

  2.   

    Class.forName("oracle.jdbc.driver.OracleDriver").newInstance();
    String url="jdbc:oracle:thin:@localhost:1521:orcl";
    //orcl为你的数据库的SID
    String user="scott";
    String password="tiger";
    Connection conn= DriverManager.getConnection(url,user,password);