Questions tagged [ojdbc]

OJDBC is the Oracle JDBC driver.

OJDBC is the JDBC driver provided by Oracle, see Oracle JDBC page

666 questions
-2
votes
1 answer

Why drivers are required for JDBC-ODBC?

I am having a little confusion of what I have studied. I have studied that drivers are software programs that are required to interact external hardware devices like printers,mouse,mobiles etc. But when I connect ODBC or JDBC in Java,it requires…
HN Singh
  • 98
  • 2
  • 13
-2
votes
1 answer

class not foundexception: oracle.jdbc,driver.OracleDriver

I wrote a code and got this error, then I searched it in Internet and all answers were about adding jdbc literary, I did it 8n several ways according others guidance in Internet but Ithe didn't work.
-2
votes
2 answers

How can i access Remote oracle Database in my java project via LAN, Oracle is not installed in my machine

I want to access a database in my java project though LAN, the oracle database is installed in another machine i want to fetch all the data in my java project & i don't have installed oracle in my machine?
-2
votes
4 answers

java.sql.SQLException: Io exception: Invalid number format for port number

package jdbcconnection; import java.sql.*; public class Jdbc2{ public static void main(String[] args) throws Throwable { //Resgister the driver through Class.forName("oracle.jdbc.driver.OracleDriver"); …
user3481751
  • 21
  • 1
  • 1
  • 1
-3
votes
2 answers

How to get Oracle 6 jar from Maven to my local repository

How to add Oracle to my dependencies from Maven.
-4
votes
1 answer

How to retrieve data from oracle database in XSD format?

in the Oracle database I have a table which contains simple attributes such as: name first name age Goal: I would like to recover this data in XSD format. are there SQL functions for that or java libraries that do that? Thanks in advance
1 2 3
44
45