Categories:
Audio (13)
Biotech (29)
Bytecode (35)
Database (77)
Framework (7)
Game (7)
General (512)
Graphics (53)
I/O (32)
IDE (2)
JAR Tools (86)
JavaBeans (16)
JDBC (89)
JDK (337)
JSP (20)
Logging (103)
Mail (54)
Messaging (8)
Network (71)
PDF (94)
Report (7)
Scripting (83)
Security (32)
Server (119)
Servlet (17)
SOAP (24)
Testing (50)
Web (19)
XML (301)
Other Resources:
ShowJdbcDrivers.java - ojdbc Oracle Driver Example
How to verify if ojdbc Oracle Driver is loaded corrected from the classpath? I want to see a Java program example.
✍: FYIcenter.com
Here is an example program, ShowJdbcDrivers.java, that can be used to
verify if ojdbc Oracle Driver is loaded corrected from the classpath or not:
// Copyright (c) FYIcenter.com import java.sql.DriverManager; import java.sql.Driver; import java.util.Enumeration; // Example show all JDBC drivers loaded in the classpath public class ShowJdbcDrivers { public static void main(String [] args) throws Exception { System.out.println("Loaded JDBC driver classes:"); for (Enumeration<Driver> drivers=DriverManager.getDrivers(); drivers.hasMoreElements(); ) { System.out.println(drivers.nextElement().getClass().getName()); } } }
You can compile and run the above example in a command window. You should see ojdbc Oracle Driver class listed in the output:
C:\fyicenter>\local\jdk-1.8.0\bin\javac ShowJdbcDrivers.java C:\fyicenter>\local\jdk-1.8.0\bin\java -cp .;\fyicenter\Oracle-12.2.0.1\ojdbc8.jar ShowJdbcDrivers Loaded JDBC driver classes: oracle.jdbc.OracleDriver
If you run the example again with a typo in the classpath, you will not see the ojdbc Oracle Driver class in the output:
C:\fyicenter>\local\jdk-1.8.0\bin\java -cp .;\fyicenter\Oracle-12.2.0.1\ojdbc18.jar ShowJdbcDrivers Loaded JDBC driver classes:
Â
⇒ ojdbc Oracle Driver Connection URL String
⇠ojdbc.jar in Java Database Connection Architecture
2018-03-13, 2041👍, 0💬
Popular Posts:
The JDT project provides the tool plug-ins that implement a Java IDE supporting the development of a...
JDK 11 jdk.jdeps.jmod is the JMOD file for JDK 11 JDeps tool, which can be invoked by the "jdeps" co...
What Is commons-fileupload-1.3.3 .jar?commons-fileupload-1.3.3 .jaris the JAR file for Apache Common...
Old version of xml-apis.jar. JAR File Size and Download Location: File name: xmlParserAPIs.jar File ...
JDK 11 jdk.crypto.mscapi.jmod is the JMOD file for JDK 11 Crypto MSCAPI module. JDK 11 Crypto MSCAPI...