Jdbc drivers por Oracle 7.3.3

Does Anybody Knows Where Can I get the classes111.zip por Oracle 7.3.3???
thanks..
David.

I already did that, but the directory does not exist...
thing is, i doesn't have access to the installation CD,
does anybody know an internet site where I can find these drivers??
thanks...

Similar Messages

  • JDBC drivers for oracle 8.0.5 on HP UX 11.0

    Where do I find JDBC drivers for oracle 8.0.5 on HP UX 11.0?

    <BLOCKQUOTE><font size="1" face="Verdana, Arial">quote:</font><HR>Originally posted by greg freda ([email protected]):
    Where do I find JDBC drivers for oracle 8.0.5 on HP UX 11.0?<HR></BLOCKQUOTE>
    Did you find out where you can find the drivers for Oracle 8.0.5 HP-Unix ??

  • How can I install JDBC drivers for Oracle?!?....

    i have a program that has this line:
    import oracle.jdbc.pool.OracleDataSource;
    that gives this error when I compile it:
    package oracle.jdbc.pool does not exist
    So I think I need to install JDBC drivers for Oracle. (?)
    I went here: [http://www.oracle.com/technology/software/tech/java/sqlj_jdbc/htdocs/jdbc_111060.html]
    and downloaded the files for JDBC Thin.
    Then I followed this: [http://www.oracle.com/technology/software/tech/java/sqlj_jdbc/htdocs/111070_readme.html]
    by entering these commands (I'm using Ubuntu):
    export CLASSPATH=$CLASSPATH:/path/to/files/ojdbc6.jar
    export CLASSPATH=$CLASSPATH:/path/to/files/orai18n.jar
    export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:/path/to/files
    When I type echo $CLASSPATH I can see that those commands worked, but it hasn't made any difference when I try to compile.
    I still get the same error. Is it because I didn't do anything about the .so files? The readme page didn't mention them in the installation section.
    Please help! I am so stuck...

    I don't think you need the shared libraries (.so files) and given what I saw when I glanced at those pages, I don't think they'd even work for you, although maybe I just didn't read enough of it.
    What happens when you type
    javap oracle.jdbc.pool.OracleDataSourceon the command line?
    How are you invoking javac? Are you perhaps passing a classpath argument?
    Are you sure that the path to the jar files is correct? Are the paths relative?

  • Any difference in the dbms and jdbc drivers btw oracle 8i lite and 9i lite

    Is there any significant difference between oracle 8i lite and oracle 9i lite in terms of database and jdbc drivers?
    If not, it may be better off using oracle8i.

    According to Oracle , 9i lite is more powerful than 8i Lite.
    one thing, 8i Lite is not certified for windows 2000.
    jothi

  • Seeking for jdbc drivers for oracle

    I am new to java. I want to connect java with oracle databases(8i or 9i)
    but don't know the driver name and how to use it, and from where i can
    download it for free...

    Hi ,
    To connect to Oracle U certainly need the Thin Driver classes12.zip in the ClassPath . And here is the code Example .
    import java.sql.SQLException;
    import java.sql.Connection;
    import java.sql.Statement;
    import java.sql.PreparedStatement;
    import java.sql.ResultSet;
    import oracle.jdbc.driver.*;
    import java.sql.DriverManager;
    public class MyJdbc
      public MyJdbc( int startPoint)
           try {
              Class.forName( "oracle.jdbc.driver.OracleDriver" );
         }catch(ClassNotFoundException nf)
              System.out.println("Clas Not Found" + nf.toString());
         try
              DriverManager.registerDriver (new  oracle.jdbc.driver.OracleDriver());
              /* Connection  */
                 String      url="jdbc:oracle:thin:@10.236.148.52:1521:DPEG";  // Machine IP , POrt No and SID
              Connection con = DriverManager.getConnection(url , "username","pasword");
           String sqlString = "Select EName , Age , Dob From Emp ";     
              Statement stmt = con.createStatement();
              ResultSet rs = stmt.executeQuery(sqlString);
               while(rs.next())
                        System.out.println("Name " + rs.getString("ENAME"));
                        System.out.println("Age " + rs.getString("AGE"));
                        System.out.println("Dob " + rs.getString("DOB"));
               rs.close();
               stmt.close();
               con.close();
        }catch(SQLException z)
          System.out.println("######" + z.toString());
          z.printStackTrace();
      public static void main(String[] args)
        MyJdbc myoracle = new MyJdbc();   
    }

  • Alternative to expensive JDBC drivers for Oracle

    During the last week I have been more and more impressed with Sun Java Studio Creator and have been planning a world take-over based on my new found productivity.
    Until this afternoon when I tried to deploy an app on Tomcat using an Oracle database...
    Am I right in understanding that I will have to pay thousands of dollars for a Driver? I have no choice about the underlying database or app server.
    Without a cheap way around the driver problem I will have to stop using SJSC, a big big shame.
    Hopefully I have missed something but this seems to have been the state of affairs from previous posts, has any thing changed in the last six months?

    Oh dear. My client (a local government) already has a lot of expertise and money invested in an Oracle container and won't consider changing to Sun App Server 8.1. Its out of my control!
    My projects are small scale and would not justify the purchase of an expensive driver.
    I guess my best option is to use Creator with MySql, but again I will have to justify why I am not using the 'standard' database.
    Sun Java Studio Creator is a great product, it just works! Well done whoever manages and works on this project!
    This driver issue is as we say in England, daft. its almost as if Sun and Oracle are competing in some way.
    Thanks again.

  • License of  Oracle TimesTen JDBC Drivers

    Dear all
    I have looking into my installation directory, but i cannot find the license file for the jdbc drivers for Oracle TimesTen:
    The drivers are the following ones:
    - ttjdbc5.jar
    - ttjdbc6.jar
    Could anybody tell me where i can found the license?
    Regards
    Carlos

    The TimesTen JDBC drivers are covered by the same softwarer license as the rest of TimesTen; i.e. the standard Oracle software license agreement. To distribute any component of TimesTen you will need a suitbale distribution agreement with Oracle, sorry.
    Note that TimesTen JDBC drivers are not pure Java drivers. They are a JDBC/ODBC bridge and rely on a properly installed and configured TimesTen ODBC client in order to operate.
    Regards,
    Chris

  • Weblogic 5.1 and Oracle Database 10g JDBC Drivers

    I need to know if there are JDBC drivers for Oracle Database 10g compatible with Weblogic Server 5.1.
    Regards,
    Luis

    Hi. You should be able to use any JDBC driver with WebLogic 5.1.
    It may be the JVM that complains, if you use too old a JVM...
    Joe Weinstein at BEA Systems

  • JDBC connection to Oracle 8.16 from Weblogic 6.1

    I am trying to connect to an Oracle DB using the JDBC thin driver to Weblogic 6.1
    I am getting the following error when starting up the Weblogic server:
    "oracle.net.TNSAddress.SOException"
    Anyone have an idea as to why I am getting this.
    Thanks
    Lathell McKeller

    If the url fix does not work - try updating your jdbc drivers for oracle 8 (get the latest one). There is a chance that using the older oracle 7 drivers you might encounter some problems.
    Regards,
    Michael Bogecho

  • Installing the jdbc drivers

    Hello Guys:
    I am new to Oracle Application DBA stuff and here is what I have to do now.
    I need to install the jdbc drivers in our oracle financials UAT.
    Here is what I heard from our Oracle support:
    ANSWER
    ======
    The Patch #4159795 status is Deleted, indicates that the patch has been deleted from the patch repository. This usually occurs when the patch has been obsoleted.
    However, this bug (BUG:4159795) has been fixed in version 10.2 which means it's solved in the latest releases.
    The JDBC drivers are certified to work with the currently supported versions of the Oracle Database. For example, the JDBC Thin drivers in Oracle Database 10g a re certified to work with the 9.2.x, 9.0.1.x, and 8.1.7 Oracle Database releases.
    However, they are not certified to work with older, unsupported database releases, such as 8.0.x and 7.x.
    http://download.oracle.com/docs/cd/B19306_01/java.102/b14355/getsta.htm#i1008205
    Now please tell me what needs to be done. Should i install this on the application server or on the database server. If any one could give me a heads or give me pointers to documents it will be great.
    Regards,
    Bala

    If you are using Oracle 11i, the JDBC drivers are normally upgraded via a patch during a JDK upgrade (1.3.1, or 1.4.2, or 1.5.0). I am pretty sure the note referenced by the analyst has no relevance to Oracle EBS.
    Upgrading JDBC drivers with Oracle Applications 11i
    http://metalink.oracle.com/metalink/plsql/ml2_documents.showDocument?p_database_id=NOT&p_id=164317.1
    Upgrading Oracle Applications 11i to use JDK 1.3
    http://metalink.oracle.com/metalink/plsql/ml2_documents.showDocument?p_database_id=NOT&p_id=130091.1
    Upgrading to J2SE 1.4.2 with Oracle Applications 11i
    http://metalink.oracle.com/metalink/plsql/ml2_documents.showDocument?p_database_id=NOT&p_id=246105.1
    Using J2SE Version 5.0 with Oracle E-Business Suite 11i
    http://metalink.oracle.com/metalink/plsql/ml2_documents.showDocument?p_database_id=NOT&p_id=304099.1

  • JDBC 4.0 Oracle Dataabse 11g

    The new features in Oracle Database 11g indicates that Oracle Dataabse 11g is JDBC 4.0 compliant.
    "Oracle Database 11g is compliant with JDBC 4.0 and Java SE 5.0 for the JDBC drivers and Oracle Java Virtual Machine (JVM)."
    http://www.oracle.com/technology/products/database/oracle11g/pdf/database-11g-new-features-whitepaper.pdf
    JDK 5.0 does not support JDBC 4.0. JDK 6.0 is required for JDBC 4.0.
    How is JDBC 4.0 supported if JDK 6.0 is not supported?

    Correction.
    JDBC 4.0 is supported with client-side drivers when used with JDK 6.0.
    Oracle database doen't have to support JDK 6.0.

  • Orcle JDBC Drivers

    Hi,
    My aim is to write a simple Java program that connects to the
    Oracle Database and displays the data from a table. But I dont
    have any JDBC Drivers for oracle.
    So, I have downloaded the Orcle JDBC Drivers from the Oracle
    Site under the section below :
    Download the drivers NT
    Oracle8i 8.1.7 JDBC Drivers for use with JDK 1.2.x for NT.
    It is an Zip file which consists of so many files/directories..
    Where do I place all these files.
    And how do I create a Datasource which connects to the Oracle
    database and can be used in Java Program?
    Please help me in acheiving this simple task with detailed
    Instructions. ( I can achieve the above task using JDBC:ODBC
    Drivers, but now I want use the latest Drivers)
    Also where can I download the Type4 Drivers for Oracle?
    Thanks in Advance,
    Ram

    Just add the Classes12.zip to your Classpath settings.That is it.
    U unzip them and gets a folder called oracle. place this in ur
    web-inf\classes folder which is also there in classpath
    Here is a sample code code used based on JRUN and Oracle
    Conn.Poll. we have got 2 seperate DBases hence 2 DataSoruces
    package     com.tfl.db;
    import javax.sql.DataSource;
    import javax.naming.InitialContext;
    import javax.sql.ConnectionPoolDataSource;
    import oracle.jdbc.pool.OracleConnectionPoolDataSource;
    import oracle.jdbc.pool.OracleConnectionCacheImpl;
    import oracle.jdbc.pool.OracleConnectionEventListener;
    import java.sql.Connection;
    import java.sql.SQLException;
    import java.sql.ResultSet;
    import java.sql.ResultSetMetaData;
    import java.sql.Statement;
    import java.sql.CallableStatement;
    import java.util.StringTokenizer;
    import java.util.Vector;
    import javax.sql.ConnectionEventListener;
    import javax.activation.URLDataSource;
    import javax.sql.ConnectionEvent;
    public class DbBean     implements ConnectionEventListener
    //     private     javax.sql.PooledConnection          dbconn;     
         // for database connection
    //     private     javax.sql.PooledConnection          dbconn2;
              // for database connection
         Connection          dbconn;          // for database
    connection
         Connection          dbconn2;          // for
    database connection
         private     javax.sql.ConnectionPoolDataSource
         cpds=null;
         private     javax.sql.ConnectionPoolDataSource
         cpds2=null;
         private     OracleConnectionPoolDataSource     ocpds;
         private     OracleConnectionPoolDataSource     ocpds2;
         private     OracleConnectionCacheImpl     ocimpl;
         private     OracleConnectionCacheImpl     ocimpl2;
         java.sql.Connection con=null;
         java.sql.Connection con2=null;
         private Vector                    vector = null;
         ArrayMaker akr=null;
         DataFetcher df=null;
    InitialContext ctx=null;
         String mydb =null;
         String dbname=null;
         URLDataSource uds;
         public DbBean()
              super();
              ocpds=new OracleConnectionPoolDataSource();
              ocpds2=new OracleConnectionPoolDataSource();
              this.getAllConnReady();
         public void getAllConnReady()
              try{
                        ctx=new InitialContext();
              catch(Exception e)     {System.out.println
    ("DataSource Context failure ?? --- "+e);}     
              try{
              ocpds=(OracleConnectionPoolDataSource)ctx.lookup
    ("java:comp/env/jdbc/tfl_afs");
              ocpds2=(OracleConnectionPoolDataSource)ctx.lookup
    ("java:comp/env/jdbc/tfl_twh");
              System.out.println("JNDI Look up done ");
              ctx.close();
              } catch(Exception e){System.out.println
    ("DataSource Look up failure ?? --- "+e);}
              try{
                             ocimpl=new
    OracleConnectionCacheImpl(ocpds);
                             ocimpl2=new
    OracleConnectionCacheImpl(ocpds2);
                             ocimpl.setMinLimit(1);
                             ocimpl.setMaxLimit(20);
                             ocimpl.setCacheScheme
    (OracleConnectionCacheImpl.FIXED_WAIT_SCHEME);
                             ocimpl2.setMinLimit(1);
                             ocimpl2.setMaxLimit(20);
                             ocimpl2.setCacheScheme
    (OracleConnectionCacheImpl.FIXED_WAIT_SCHEME);
              } catch(Exception e){System.out.println
    ("DataSource Estb failed ?? --- "+e);}
              try{
              dbconn          = ocimpl.getConnection();
              dbconn2     = ocimpl2.getConnection();
              System.out.println("Pooled Connection Ready ");
              } catch(Exception e){System.out.println
    ("DataSource Estb failed ?? --- "+e);}
         public static void main(String a[])
              DbBean db = new DbBean();
         public ResultSet execSQL()
         Statement stmt= null;
         ResultSet rs =null;
                   try{
                        stmt= con.createStatement();
                        rs = stmt.executeQuery("Select
    usr_fname from auth_usr_personal where usr_sr_no>100 and
    usr_sr_no<150");
                        System.out.println("DB RS
    Ready to Return --- ");
                        return rs;
                   } catch(Exception e)
                   {System.out.println("DB  Execution
    Error  --- "+e);}
              return rs;
         public java.sql.Connection connect_Me_To(String dbname)     
              Connection con = null;
              this.dbname=dbname;
              try{
                             if
    (dbname.equalsIgnoreCase("afsweb"))
                                  try{     
                                  con=dbconn;
                                  if(con.isClosed
                   System.out.println("dbBean speaks--con
    is closed !--1--make a new ");
                   ocpds=null;
                   ocpds2=null;
                   this.getAllConnReady();
                   con=dbconn;
                   return con;
                                  catch(Exception
    e)
                   System.out.println("dbBean speaks--con
    is closed !--2--make a new ");
                   ocpds=null;
                   ocpds2=null;
                   this.getAllConnReady();
                   con=dbconn;
                   return con;
                             else
                             if
    (dbname.equalsIgnoreCase("twh"))
                             try{     
                                  con=dbconn2;
                                  if(con.isClosed
                   System.out.println("dbBean speaks--con
    is closed !--TWH-1--make a new ");
                   ocpds=null;
                   ocpds2=null;
                   this.getAllConnReady();
                   con=dbconn2;
                   return con;
                                  catch(Exception
    e)
                   System.out.println("dbBean speaks--con
    is closed !--TWH-2--make a new ");
                   ocpds=null;
                   ocpds2=null;
                   this.getAllConnReady();
                   con=dbconn2;
                   return con;
                   }catch (Exception exception)
                        System.out.println(" Exception
    while getting now Connection Remaking.." );     
                        ocpds=null;
                        ocpds2=null;
                        this.getAllConnReady();
                        connectAgain(dbname);
              return con;
    public void connectAgain(String dbname)
    System.out.println(" Exception while getting Conn now Re-
    establ.to--"+dbname );     
    connect_Me_To(dbname);
    public void connectionClosed(ConnectionEvent event)
                        System.out.println("It is a
    closed Connection..........Let us try again..........");
                        ocpds=null;
                        ocpds2=null;
                        this.getAllConnReady();
                        connectAgain(this.dbname);
    public void connectionErrorOccurred(ConnectionEvent event)
                        System.out.println("It is a
    closed Connection.Error Check with DBAs.............");
                        ocpds=null;
                        ocpds2=null;
                        this.getAllConnReady();
                        connectAgain(this.dbname);
    hope this helps

  • Type 4 jdbc drivers

    hi
    I want to know that weblogic 7 support type 4 jdbc drivers for oracle
    kindly reply me
    Punee jain

    This isn't a JDBC question. It's a weblogic question.
    I'm sure Bea has some documentation on that on their website
    Thomas

  • Unable to download JDBC drivers

    Trying to download the Oracle JDBC drivers for Oracle 8i rel 2 from http://download.oracle.com/otn/utilities_drivers/jdbc/8171/classes12.zip and cannot. Actually cannot seem to download any files from the JDBC drivers pages. To verify I also tried downloading the 8i documents from the same page as well as the 9i rel 2 driver to no avail. I am assuming that the server is down, but need the JDBC immediately. Is there another download site where I can obtain this driver?
    Thanks!
    -Suzanne
    So that we may better diagnose DOWNLOAD problems, please provide the following information.
    - Server name: ??
    - Filename: classes12.zip
    - Date/Time: 07/08/2002 1600 - 1800 EDT
    - Browser + Version : IE 5.5
    - O/S + Version: Win 2K Pro
    - Error Msg: "The page cannot be displayed"

    Was able to download to day without incident. Thank you!

  • Upgrade 10G to use 10G thin jdbc drivers- OCI

    This is wierd...
    If I upgrade 10G app server to use the 10G thin JDBC drivers, and set up a data source to use the thin drivers, is there any way that I could score a[b] ORA-01010 invalid OCI operation error when I'm not using an OCI driver?
    Anyone else seen this...again, it makes no sense...

    You can not and should not use JDK 1.2 with 8i drivers.
    If you want to use JDK 1.2 drivers, download the 8.1.6 SDK
    from external site.
    Please, please, please READ the FAQ at www.oracle.com/java/jdbc
    before posting
    Premal Mehta (guest) wrote:
    : Hi,
    : Sorry for multiple posting. Previous posting has incomplete
    : information. Here's the whole scenerio...
    : I have Oracle 8i installed on my server. I have downloaded
    : JDBC drivers for Oracle 8i from Oracle site. When I try to run
    a
    : sample example from the demo files given, I get a Windows
    : internal Error "Exception: Access Violation (0xc0000005),
    : Address: 0x6ee0fb83". I am using Oracle 8i on Win NT 4.0 with
    : SP4, IIS4.0 with 128 MB RAM.
    : Also, I am trying to use OCI8 JDBC drivers with JDK 1.2. The
    : classpath is set for classes111.zip files.
    : I am unable to run applets with JDBC also. On using thin
    : drivers, it gives "SO Exception" error.
    : I have tried many options but it dosent seem to work.
    Please
    : help as this is very urgent.
    Oracle Technology Network
    http://technet.oracle.com
    null

Maybe you are looking for