About 50 results
Open links in new tab
  1. Java JDBC - How to connect to Oracle using tnsnames.ora

    Jan 7, 2013 · Java JDBC - How to connect to Oracle using tnsnames.ora Asked 13 years, 2 months ago Modified 6 years, 5 months ago Viewed 107k times

  2. java - ExitException: Unable to load resource: http:// [host]: [port ...

    Dec 20, 2023 · If it only occurs for a single user, my guess is that user cannot access [host]:[port]. Maybe there is a firewall and [port] is not open to him (or her). Maybe a security certificate is missing …

  3. java - How to connect to Oracle using Service Name instead of SID ...

    Helpful explanation on connecting to Oracle using a service name instead of SID. Many development teams, including Colan Infotech, also follow similar database practices to keep applications stable …

  4. How to test connection to Oracle Database using Java

    Sep 12, 2013 · Is there a way to test my connection to oracle database using Java? Here's my code. public class OracleConnection { public static void main (String [] args) throws Exception { //connect...

  5. How to connect to oracle database using spring boot

    Jan 23, 2019 · Learn how to connect Oracle database with Spring Boot using configurations and properties for seamless integration.

  6. java - SQLException: No suitable Driver Found for jdbc:oracle:thin ...

    Aug 24, 2012 · "No suitable driver" usually means that the JDBC URL you've supplied to connect has incorrect syntax or when the driver isn't loaded at all. When the method getConnection is called, the …

  7. java - Differences between Oracle JDK and OpenJDK - Stack Overflow

    For Java 7, nothing crucial. The OpenJDK project is mostly based on HotSpot source code donated by Sun. Moreover, OpenJDK was selected to be the reference implementation for Java 7 and is …

  8. java - oracle.jdbc.driver.OracleDriver ClassNotFoundException - Stack ...

    Mar 24, 2013 · Class.forName("oracle.jdbc.driver.OracleDriver"); This line causes ClassNotFoundException, because you haven't placed ojdbc14.jar file in your lib folder of the project. …

  9. java - How to check JDK version in Oracle? - Stack Overflow

    Jan 27, 2015 · create function get_java_property(prop in varchar2) return varchar2 is language java name 'java.lang.System.getProperty(java.lang.String) return java.lang.String'; select …

  10. oracle database - java.sql.SQLException: - ORA-01000: maximum open ...

    Aug 30, 2012 · java.sql.SQLException: - ORA-01000: maximum open cursors exceeded I was using Spring Framework with Spring JDBC for dao layer. My application used to leak cursors somehow …