我正在尝试运行以下连接到远程数据库和检索记录的代码:
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:coursejava.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 FilesJavajdk1.7.0jrelib路径中。我不知道我哪里做错了……
您使用的是非常旧的Oracle JDBC驱动程序。您应该使用ojdbc6.jar.
试试这个驱动程序:
Class.forName ("oracle.jdbc.OracleDriver");
检查Netbeans中的类路径:
如何设置NetBeans的类路径:
在NetBeans项目属性窗口中,单击左侧面板中的Libraries,在右侧面板中可以配置4类路径:
- Compile:默认为空。编译时库是自动的传播到其他类别的类路径,所以您不需要在所有四个类别中重复相同的jar文件集。
- 运行:默认情况下包括编译时类路径中的所有内容,和编译类(如build/classes)。 编译测试:默认情况下包括编译时的所有内容类路径、编译类(例如build/classes)和JUnit。
- 运行测试:默认情况下包括编译测试的类路径,以及编译测试。