How do I find ojdbc jar version?



How do I find ojdbc jar version?..

Answer / Chandrajeet Verma

To find the version of the ojdbc jar file, you can use a command-line tool like Maven or Gradle. For example, if using Maven, add this dependency to your pom.xml file:nn<dependency>n <groupId>oracle.ojdbc</groupId>n <artifactId>ojdbc8</artifactId>n <version>19.7.0.0</version>n</dependency>nThe version number (19.7.0.0 in this example) indicates the specific version of the ojdbc jar file.

Is This Answer Correct ?    0 Yes 0 No

Post New Answer

More JDBC Interview Questions

What is JDBC Connection isolation levels?

1 Answers  


i am user who logined the application..after that another valid user will also logind..so that is it neccessary to create jdbc connection for each and every user...plz explain it with proper answer...plz help me

5 Answers   IBM,


How we can you use preparedstatement.

1 Answers  


How many types of JDBC Drivers are present and what are they?

1 Answers  


What is batch processing and how to perform batch processing in jdbc?

1 Answers  


What is jdbc and odbc in java?

1 Answers  


What is jsp and jdbc?

1 Answers  


What is JDBC?

3 Answers   Akamai Technologies,


java.lang.ClassNotFoundException:oracle.jdbc.driver.OracleDr iver? I get this error at run time.I used oracle10G. I set CLASS PATH:C:\oraclexe\app\oracle\product\10.2.0 \server\jdbc\lib\ojdbc14.jar; I write JDBC PROGRAM like import java.sql.*; class Example { public static void main(String args[]) { try { Class.forName ("oracle.jdbc.driver.OracleDriver"); System.out.println("Driver Loaded"); Connection con=DriverManager.getConnection ("jdbc:oracle:thin:@localhost:1521:xe","system","salmas"); System.out.println("Driver Connected"); Statement st=con.createStatement(); ResultSet rs=st.executeQuery("select * from emp"); while(rs.next()) { System.out.println(rs.getInt(1)); System.out.println(rs.getString(2)); System.out.println(rs.getString(3)); } st.close(); con.close(); } catch(Exception e) { System.out.println(e); } finally { System.out.println("it's finally block executed"); } } }

6 Answers   CTS,


What is thin driver in jdbc?

1 Answers  


Does multiple concurrent open statements per connection are supported by the JDBC-ODBC Bridge?

2 Answers  


How to achieve JDBC Connection Pooling using JDBC DataSource and JNDI in Apache Tomcat Server?

1 Answers  


Categories