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 |
What is JDBC Connection isolation levels?
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
How we can you use preparedstatement.
How many types of JDBC Drivers are present and what are they?
What is batch processing and how to perform batch processing in jdbc?
What is jdbc and odbc in java?
What is jsp and jdbc?
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"); } } }
What is thin driver in jdbc?
Does multiple concurrent open statements per connection are supported by the JDBC-ODBC Bridge?
How to achieve JDBC Connection Pooling using JDBC DataSource and JNDI in Apache Tomcat Server?