Oracle 8i connectivity with JDK1.4.2 - Failure - Help Needed

I'm new to Java-ORACLE connectivity.
I have installed Oracle 8i v8.1.5 in my Windows 2K Adv. Server with JDK1.4.2.
But I could connect to Oracle from Java neither thru JDBC-ODBC nor JDBC thin drivers.
What are the files ( or classes ) needed for connectivity and where can I download them.
Do the Oracle8i 8.1.7 JDBC drivers have backward compatibility with Oracle8i 8.1.5 ?
Please help me in this regard with utmost information possible and sample code.
Thanks in Advance.
Hara Gopal

For your kind information (more)
When I used JDBC-ODBC Bridge,
It just gave an error message : [Microsoft ODBC for Oracle]
and
when I tried the command at DOS prompt,
javap oracle.jdbc.driver.OracleDriver
it gave message ERROR: javap oracle.jdbc.driver.OracleDriver could not be found
Please Help me
Hara Gopal

Similar Messages

  • NetBean, I can't establish the oracle database connection with version 9i.

    In NetBean, I can't establish the oracle database connection with version 9i.
    I have create the datasource and it is fine.
    when i try to access the tables i get a message
    "Unable to refresh children, connection is broken, unsupported feature"
    in netbeans.
    Does netbeans support oracle 9i version.
    Thanks,
    VKK

    In NetBean, I can't establish the oracle database connection with version 9i.
    I have create the datasource and it is fine.
    when i try to access the tables i get a message
    "Unable to refresh children, connection is broken, unsupported feature"
    in netbeans.
    Does netbeans support oracle 9i version.
    Thanks,
    VKK

  • Howmany oracle user connect with oracle server.

    hi all
    howmany oracle user connect with oracle server.
    i want query for above sentance.

    Robert,
    This query will show us the username who are connect to a particular database. If OP wants that how many overall users are connected to his/her oracle server (which is having more than one db) then please tell us. Suppose 10 users are connected with db1 and 20 users are connected with db2.. like that.
    Regards
    Girish Sharma

  • My mac works well on internet with safari. I cannot get my itunes to connect with itunes store. can anybody help me?, My mac works well on internet with safari. I cannot get my itunes to connect with itunes store. can anybody help me?

    My mac works well on internet with safari. I cannot get my itunes to connect with itunes store. can anybody help me?, My mac works well on internet with safari. I cannot get my itunes to connect with itunes store. can anybody help me?

    i tunes asks me to check internet connection.

  • Im not able to connect to app store with my apple id after i trying to logout and connect with another id. Please help.

    im not able to connect to app store with my apple id after i trying to logout and connect with another id. Please help.

    The app store has been down for over 8 hours. The following can be used to check on its current status: https://www.apple.com/support/systemstatus/

  • Im having problems with my iPod Touch 2nd gen. It's disabled and tells me to connect to iTunes. But when I do that, iTunes wont detect the iPod.I have put the iPod in USB- mode, and by that I mean I have tried connecting with holding the home button Help?

    It's disabled and tells me to connect to iTunes. But when I do that, iTunes wont detect the iPod.I have put the iPod in USB- mode, and by that I mean I have tried connecting with holding the home button when connecting the USB. Help?

    Place the iOS device in Recovery Mode and then connect to your computer and restore via iTunes. The iPod will be erased.
    iOS: Wrong passcode results in red disabled screen                         
    If recovery mode does not work try DFU mode.                        
    How to put iPod touch / iPhone into DFU mode « Karthik's scribblings        
    For how to restore:
    iTunes: Restoring iOS software
    To restore from backup see:
    iOS: Back up and restore your iOS device with iCloud or iTunes       
    If you restore from iCloud backup the apps will be automatically downloaded. If you restore from iTunes backup the apps and music have to be in the iTunes library since synced media like apps and music are not included in the backup of the iOS device that iTunes makes.
    You can redownload most iTunes purchases by:
    Downloading past purchases from the App Store, iBookstore, and iTunes Store        
    If problem what happens or does not happen and when in the instructions? When you successfully get the iPod in recovery mode and connect to computer iTunes should say it found an iPod in recovery mode.

  • My n8 wont connect with my pc..please help ooh

    i have installed atheros bluetootg adapter v7.2 from hp site. my laptop connects with my phone but wont transfer file. saying unable to connect. please help i need to connect thanks

    Have you tried manually installing the drivers through device manager, picking from a list of drivers and finding the microsoft generic bluetooth adapter driver?
    Please give Kudos. What other kind of recognition could I get?
    Have I solved your problem? Mark solution as accepted.
    I try to hate Macintosh. I really do. But I can't bring myself to hate any electronic device.

  • How to save .jpg with jdk1.1.4?(help..)

    HI...
    i know i can use following code to save .jpg with jdk1.4 by using following code:
    BufferedImage img; // your working image
    ImageIO.write(img, "jpg", new File("save.jpg"));
    or
    BufferedImage bimg = null;
    int w = img.getWidth(null);
    int h = img.getHeight(null);
    int [] pixels = new int[w * h];
    PixelGrabber pg = new PixelGrabber(img,0,0,w,h,pixels,0,w);
    try {
    pg.grabPixels();
    catch(InterruptedException ie) {
    ie.printStackTrace();
    bimg = new BufferedImage(w,h,BufferedImage.TYPE_INT_RGB);
    bimg.setRGB(0,0,w,h,pixels,0,w);
    // Encode as a JPEG
    FileOutputStream fos = new FileOutputStream("out.jpg");
    JPEGImageEncoder jpeg = JPEGCodec.createJPEGEncoder(fos);
    jpeg.encode(bimg);
    fos.close();
    But when i want to recompile with jdk1.1 , what can i do now ?
    Do you have any exapmles?
    thank you so much...

    Sorry I was not in Station!!!!!and hence the delay in replying
    Check this example for more details
    public WriteImageIW( String filename, String type ) {
    try {
    int width = 200, height = 200;
    int x0 = 20, y0 = 20, x1 = width-20, y1 = width-20;
    BufferedImage bi = new BufferedImage( width, height,
    BufferedImage.TYPE_INT_ARGB );
    Graphics2D ig2 = bi.createGraphics();
    GradientPaint paint =
    new GradientPaint( x0, y0, Color.white, x1, y1, Color.black );
    ig2.setPaint( paint );
    ig2.fillRect( 0, 0, width-1, height-1 );
    BasicStroke stroke = new BasicStroke( 10, BasicStroke.CAP_ROUND,
    BasicStroke.JOIN_ROUND );
    ig2.setPaint( Color.lightGray );
    ig2.setStroke( stroke );
    ig2.draw( new Ellipse2D.Double( x0, y0, x1-x0, y1-y0 ) );
    Font font = new Font( "TimesRoman", Font.BOLD, 20 );
    ig2.setFont( font );
    String message = "Java2D!";
    FontMetrics fontMetrics = ig2.getFontMetrics();
    int stringWidth = fontMetrics.stringWidth( message );
    int stringHeight = fontMetrics.getAscent();
    ig2.setPaint( Color.black );
    ig2.drawString( message, (width-stringWidth)/2,
    height/2+stringHeight/4 );
    Iterator imageWriters =
    ImageIO.getImageWritersByFormatName( type );
    ImageWriter imageWriter = (ImageWriter)imageWriters.next();
    File file = new File( filename );
    ImageOutputStream ios =
    ImageIO.createImageOutputStream( file );
    imageWriter.setOutput( ios );
    imageWriter.write( bi );
    } catch( IOException ie ) {
    ie.printStackTrace();
    the file is being created, the type of the file must be specified on the command line.

  • Data uload to ODS ending up with an error. URGENT HELP NEEDED!!!!!!

    Hi
    My Sceniro is Full load from ODS1 to 5 other ODS. Iam uploading the data to other 5 ODS by selecting 1 ODS at a time.
    Problem i am facing is upload is ending up with error mesg. Error Mesg are
    <b>Error 8 when starting the extraction program - R3019
    Error in Source System - RSM340
    Req xxx in ODS2 must have QM ststus green before it is activated - RSM1110</b>
    I have seen the the OSS notes for given error no, but they are not applicable to me. what could be the other possible solution.
    In detail tab of the monitor i see red light at Extraction step and Subseq. processing.
    Its quite urgent bcoz this error is occuring in Production system.
    Plzzzz urgent help needed.
    Thanks
    Rohini
    Message was edited by: Rohini Garg

    rohini,
    go to RSA1->Modeling->Source Systems and right-click on your BW system, and click on 'Replicate Datasources'.
    also, go to the ODS that's causing the problem (via RSA1->InfoProvider and go to your ODS), right click and click on 'Generate Export Datasource'.
    one more thing, make sure that all your record/s in the source ODS is active. if you're not sure manage its contents and click on 'Activate'. if there are any entries in the the next screen that comes up, you need to activate it first, then try everything again.
    let me know what happens. also try to look for error messages in ST22 and SM21 that may be related to this and post whatever possible error you see there here.
    ryan.

  • Oracle 8i connectivity with Developer-6.0 on Desktop

    Dear Sirs,
    I wish to seek your help.
    I am having a pentium 300, with 128 MB of RAM, a sufficient space of Hard disk available with Windows NT 4.0 server. I've done oracle 8i typical installation. My server name is XYZ and Oracle database name is ABC. When I install Developer-6.0 on same machine, it is unable to connect to its destination and flashing error ora-12203.
    If possible, kindly get me out from this problem .
    Thanking you,
    Raj

    Raj,
    cmentha above for solving this problem.
    Below you will find the code for the listener.ora file.
    LISTENER =
    (ADDRESS_LIST =
    (ADDRESS =
    (PROTOCOL = TCP)
    (Host = 127.0.0.1)
    (Port = 1521)
    STARTUP_WAIT_TIME_LISTENER = 0
    CONNECT_TIMEOUT_LISTENER = 10
    TRACE_LEVEL_LISTENER = ADMIN
    SID_LIST_LISTENER =
    (SID_LIST =
    (SID_DESC =
    (SID_NAME = ORCL)
    (SID_DESC =
    (SID_NAME = extproc)
    (PROGRAM=extproc)
    Good Luck.

  • Oracle ODBC Connectivity with db2

    I want to connect forms/reports with
    IBM DB2 Database installed on the
    same machine.But while connecting
    through odbc driver it gives "Invalid
    session id,access denied"and does not
    get connected.Same message comes when
    one gets connected to sql but it runs fine.
    I have tried in two ways to configure ODBC.
    1. Using Client Configuration Assistant
    of DB2.
    2. Usgin OCA and Intersolv odbc
    driver coming along with the cd.
    Forms and reports are 6i and
    db2 version is 5.
    Thanks in advance.
    Milind

    Dear Ajay,
    I used heterogenous connectivity to connect to DB2 but it is very very slow. And checked about Oracle gateway to Db2 and came to know that it is also very slow. The next solution was using ODBC to db2 using Forms 6i Patch 13. The connectivity is very good otherwise u can use DB2 Information Integrator software (cost about $20-50 K). If you need any more information please let me know.

  • Oracle 9i Connectivity with php

    Hi,
    I am new to php and unable to connect to oracle database 9i.
    I have php and appache on one server and databse on the other server.
    I am using Appache 2.2 and php 5.2.8 (un-zippedinc:\php).
    I have place the php.ini in windows directory
    I m getting the following error: PHP Warning:  PHP Startup: Unable to load dynamic library 'C:/php/ext\\php_oci8.dll' - The specified procedure could not be found.\r\n in Unknown on line 0
    in appache error log.
    and on php page i use the oci_connect which give the following error:
    Fatal error: Call to undefined function oci_connect() in C:\Apache\htdocs\main.php on line 3
    Please Help me to solve this problem._
    Regards,
    Raza

    From error listing we can see that your PHP+Apache installation doesn't support Oracle(OCI) functions
    Additional modules not installed
    I recommend you use "Zend for Oracle"
    You may learn and download that product from this url:
    http://www.zend.com/en/products/core/for-oracle
    Edited by: Vladandr on 17.02.2009 1:54

  • Oracle 8i connectivity with DB2

    Hi,
    I want to connect to DB2 from Oracle 8i. I have read some documentation about Oracle gateways but it is not clear of how exactly we can connect to DB2.
    If any one has done this before please let me know th detail steps of how we can connect to DB2.

    For your kind information (more)
    When I used JDBC-ODBC Bridge,
    It just gave an error message : [Microsoft ODBC for Oracle]
    and
    when I tried the command at DOS prompt,
    javap oracle.jdbc.driver.OracleDriver
    it gave message ERROR: javap oracle.jdbc.driver.OracleDriver could not be found
    Please Help me
    Hara Gopal

  • Oracle 10g connectivity with sql server 2000 through oracle transpa gateway

    dear gurus.
    i am to connecto oracle 10g with sql server 2000 through oracle transparent gateway.
    i have installed transparent gateway and proper configured. also link is created.
    but when i execute query "select * from city@inventory" , so an error displayed.
    ORA-12500: TNS:listener failed to start a dedicated server process.
    kindly suggest me what could be the cause.
    regards,

    if the listener fails to spawn a dedicated server process it is commonly indicating an issue with the listener. So posting the listener and also a listener trace including a description of the env where you installed the gateway into which directory would be helpfull. Please keep also in mind if you have for example a 10.2.0.3 database and you install into this directoty a 10.2.0.1 gateway you have to reapply the patchset again do get consistent file version.
    So please describe more detailed your env.

  • Intermittent connection with netgear1000 and orange, please help

    Hi there,
    I bought a mbp 2011 and installed orange broadband with netgear1000. I am having intermittent connection, anyone has an idea?
    Thanks for the help would be much appreciated.
    Lebake

    1.with ur laptop wired to the rtr, open IE. in the address bar, type http://192.168.1.1. it will ask for authentication. leave ther username blank and in password type admin.
    2.on the setup page, click on the tab wireless and then select manual setup
    3.change the w/l n/w name to ur preference, radio band to standard 20 mhz and standard channel to 6 and then save settings.
    4. click on subtab w/l security, change the security mode to wep and in the key type any 10 digit no. and make sure this is ur password for the w/l. Then save settings
    5.now try to connect to this w/l n/w on ur laptop
    6. for ur PS3, go to n/w settings-internet connection settings-custom-and enterv the w/l settings manually.
    Linksys Setup CD said "Use Win XP or better"
    So i installed Linux

Maybe you are looking for