Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chriss Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Package path

Status
Not open for further replies.

CRoberts

MIS
Apr 14, 1999
70
US
I am new to Java and am trying to use Oracle's Java packages. I get not find the location of these relevant jar files in order to set up my class path. For the listed packages, what would be the path? Is there any documentation for where these jar files are, normal Oracle documentation is not working for me. My oracle home is: J:\oracle\ora92 and the following is what I am trying to import.

import oracle.xml.parser.v2.*;
import oracle.jdbc.driver.*;
import oracle.sql.*;
import oracle.xdb.XMLType;

Is there a file search (Windows) tip that can be done to located a particular jar file, say "oracle.jdbc.driver"?
Thank you.
 
The easiest way to find the packages is to look for *.jar files containing appropriate string:

oracle/xml/parser/v2 for parser
oracle/jdbc/driver for driver etc.


Regards, Dima
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top