我正在尝试运行以下代码,该代码连接到远程数据库并检索记录:
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路径中。 我不知道我哪里出错了?...请帮助我。
答案 0 :(得分:1)
尝试使用此驱动程序:
Class.forName ("oracle.jdbc.OracleDriver");
检查Netbeans中的类路径:
如何在NetBeans中设置类路径:
在NetBeans项目属性窗口中,单击左侧面板中的“库”,在右侧面板中,可以配置4类类路径:
答案 1 :(得分:1)
您使用的是旧版本的Oracle JDBC驱动程序。你应该使用ojdbc6.jar。