Class 未发现异常 - oracle.jdbc.driver.OracleDriver
Class not found exception - oracle.jdbc.driver.OracleDriver
我正在尝试执行以下程序,但我得到了 -
java.lang.ClassNotFoundException: oracle.jdbc.driver.OracleDriver
异常。请提出修复建议。我是 java 的新手。
我基本上是想从数据库的 T_Profile table 中读取一个值并打印相同的值。
public static void main(String[] args) throws Exception
{
String addr = "jdbc:oracle:thin:@hostName:1521:serviceName";
String un = "username";
String pw = "password";
Connection con = null;
try
{
Class.forName("oracle.jdbc.driver.OracleDriver");
con = DriverManager.getConnection(addr,un,pw);
Statement stat = con.createStatement();
String query = "select * from schema.T_PROFILE where profile_id = 100292";
ResultSet rs = stat.executeQuery(query);
while(rs.next())
{
String Profile_id = rs.getString(1);
System.out.println(Profile_id);
}
}
catch(Exception e)
{
System.out.println(e);
}
}
您需要在项目 lib
文件夹
中添加 ojdbc14.jar
文件
在库中添加.jar 文件。
你可以从这里得到它
http://www.oracle.com/technetwork/apps-tech/jdbc-112010-090769.html
我正在尝试执行以下程序,但我得到了 -
java.lang.ClassNotFoundException: oracle.jdbc.driver.OracleDriver
异常。请提出修复建议。我是 java 的新手。 我基本上是想从数据库的 T_Profile table 中读取一个值并打印相同的值。
public static void main(String[] args) throws Exception
{
String addr = "jdbc:oracle:thin:@hostName:1521:serviceName";
String un = "username";
String pw = "password";
Connection con = null;
try
{
Class.forName("oracle.jdbc.driver.OracleDriver");
con = DriverManager.getConnection(addr,un,pw);
Statement stat = con.createStatement();
String query = "select * from schema.T_PROFILE where profile_id = 100292";
ResultSet rs = stat.executeQuery(query);
while(rs.next())
{
String Profile_id = rs.getString(1);
System.out.println(Profile_id);
}
}
catch(Exception e)
{
System.out.println(e);
}
}
您需要在项目 lib
文件夹
ojdbc14.jar
文件
在库中添加.jar 文件。 你可以从这里得到它 http://www.oracle.com/technetwork/apps-tech/jdbc-112010-090769.html