连接到远程oracle数据库

时间:2011-12-14 22:07:39

标签: oracle netbeans jdbc database-connection

我正在尝试运行以下代码,该代码连接到远程数据库并检索记录:

   import java.sql.*;

   class Employee
   {
     public static void main (String args [])
      throws SQLException, ClassNotFoundException {
    // Load the Oracle JDBC driver
     Class.forName ("sun.jdbc.odbc.JdbcOdbcDriver");

   // Connect to the database
    // You must put a database name after the @ sign in the connection URL.
    // You can use either the fully specified SQL*net syntax or a short cut
    // syntax as <host>:<port>:<sid>.  The example uses the short cut syntax.
    Connection conn = DriverManager.getConnection  ("jdbc:oracle:thin:@ourcompany.com:1521:course", "username", "password");

// Create a Statement
Statement stmt = conn.createStatement ();

// Select the ENAME column from the EMP table
ResultSet rset = stmt.executeQuery ("select * from test");

// Iterate through the result and print the employee names
/*
while (rset.next ())
  System.out.println (rset.getString ("name"));
  System.out.println (rset.getString ("id"));
  */
  rset.next();
  System.out.println(rset.getString("name"));

} }

从Netbeans运行此代码后,我收到错误:

  

线程“main”中的异常java.sql.SQLException:没有为jdbc找到合适的驱动程序:oracle:thin:@ ourcompany.com:1521:course       在java.sql.DriverManager.getConnection(DriverManager.java:604)       在java.sql.DriverManager.getConnection(DriverManager.java:221)       在Employee.main(Emplyoee.java:23)   Java结果:1   建立成功(总时间:2秒)

我已下载ojdbc14.jar并保存在C:\ Program Files \ Java \ jdk1.7.0 \ jre \ lib路径中。 我不知道我哪里出错了?...请帮助我。

2 个答案:

答案 0 :(得分:1)

尝试使用此驱动程序:

Class.forName ("oracle.jdbc.OracleDriver");

检查Netbeans中的类路径:

如何在NetBeans中设置类路径:

在NetBeans项目属性窗口中,单击左侧面板中的“库”,在右侧面板中,可以配置4类类路径:

  1. 编译:默认为空。编译时库是自动的 传播到其他类别的类路径,因此您不需要 在所有4个类别中重复相同的jar文件集。
  2. 运行:默认情况下包含编译时类路径中的所有内容,以及 已编译的类(例如,构建/类)。
  3. 编译测试:默认情况下包含编译时的所有内容 classpath,已编译的类(例如,构建/类)和JUnit。
  4. 运行测试:默认情况下包括用于编译测试的类路径,以及 编译测试。

答案 1 :(得分:1)

您使用的是旧版本的Oracle JDBC驱动程序。你应该使用ojdbc6.jar。