Я пытаюсь подключиться к базе данных оракула в Eclipse.У меня есть ojdbc14.jar в папке lib в том же проекте, и я добавил его в путь сборки моего проекта, поэтому он также находится в каталоге Referenced Libraries, но все же я получаю вывод на консоль «Не удалось найти»драйвер базы данных "
Я и еще один студент-студент пытались выяснить это в течение последних полутора дней, и никто в нашем отделе не имеет опыта работы с Java и JSP, поэтому я подумал, что StackOverflow будетнаша лучшая ставка =)
try {
// Load the JDBC driver
String driverName = "oracle.jdbc.driver.OracleDriver";
System.out.println("Attempting to load the driver...");
Class.forName(driverName);
System.out.print("Loaded the driver");
// Create a connection to the database
String serverName = " ;) ";
String portNumber = " ;) ";
String sid = " ;) ";
String url = "jdbc:oracle:thin:@" + serverName + ":"
+ portNumber + ":" + sid;
String username = "kenne13";
String password = "**********";
connection = DriverManager.getConnection(url, username, password);
if (connection != null) {
return true;
}
} catch (ClassNotFoundException e) {
// Could not find the database driver
System.out.println("Could not find the database driver");
connected = false;
} catch (SQLException e) {
// Could not connect to the database
System.out.println("Could not connect to the database");
connected = false;
}
Вот вывод в консоли:
Aug 18, 2011 10:07:50 AM org.apache.catalina.startup.Catalina start
INFO: Server startup in 382 ms
Attempting to load the driver...
Could not find the database driver
Здесь - это снимок экрана с кодом, ошибкой икаталоги моего проекта.