Where i can find oracle.jdbc2..... ?

Hello,
I reading a tutorial in oracle site and in a exemple it has it in import
import java.sql.*;  // Ok
import java.io.*; // Ok
import oracle.sql.*; // Ok
import oracle.jdbc.*; // Ok
import oracle.oracore.*; // Error
import oracle.jdbc2.*; // Error
import java.math.*;
// And a implementation
// wich generate a error in SQLDATA
public class Paymaster implements SQLDATA { I�ve downloaded the folow driver wich looks like the last oracle jdbc
- Oracle9i Release 2 (9.2.0.3) & (9.2.0.1) drivers
|- For use with JDK 1.4
|- ojdbc14.jar - JDBC classes (1,181,679 bytes)
But it doen�t have the jdbc2 too and the oracle.oracore and inside oracle.jdbc.oracore;
Does anyone know where i can get that driver used in exemple??
Here is the page
If you wanna take a look in the example here is the page
http://download-west.oracle.com/docs/cd/B10501_01/java.920/a96659/03_pub.htm
more or less 26 times page down
Thank You.
Jean

you will find a jar file called classes111.jar in your ORACLE_HOME/jdbc/lib directory, oracle.jdbc2.* pacakge files will be present inside this jar. classes111.jar is to be used with JDK 1.1.x

Similar Messages

  • Where I can find Oracle Text limitations?

    Hi,
    Are there any release notes about Oracle Text limitations?
    I have read in some place that this only can have around two thousand millons documents.
    Is that correct? Where I can find information about this kind of limitations?
    Thanks in advance
    Rosa

    Hi Vladimir
    Workflow 2.6.4 is included with Oracle 10g Release 2
    1) Could check it doing a custom installation of the database product?
    2) Maybe you will need the Oracle 10g R2 Companion CD or Oracle 10g R2 Client to install Workflow Builder 2.6.4 (client side)
    Some useful links:
    http://download-west.oracle.com/docs/cd/B19306_01/install.102/b15664/install_sw.htm
    http://download-west.oracle.com/docs/cd/B19306_01/install.102/b15664/getting_started.htm#BABGIFAF
    And if you have access to metalink, take a look at note 351873.1

  • Anyone know where I can find Oracle 9i

    documentation which compare with 8i, like new features, difference???

    I don't believe such a book exists -- where did you hear about it?

  • Where I can download oracle form 6i patch 18

    Hi
    Where i can find oracle 6i patch 18 for downloading?

    981766 wrote:
    Respected Sir/Madam
    Where I can download oracle form 6i patch 18
    From My Oracle Support (MOS) website -- https://support.oracle.com
    Patchset 4948577 -- RELEASE 6I : PATCH 18
    Thanks,
    Hussein

  • Where I can find out the Offer created by in Oracle SSHR

    Where I can find out the Offer created by in Oracle SSHR. I have to make a report with Vacancy created by and Offer created by.
    I found out the Vacancy Created by.
    From where We can I find out the Offer created by. from the workflow tables or EBS SSHR tables. Please help

    Anil,
    You would want to look at the Database Tables Reference that is part of the SAP Business One SDK Help Center Documentation to assist you with your question.  Specifically look at Marketing Documents and Receipts > A/R Invoice and then at the tables OINV and INV1.
    Hope that helps,
    Eddy

  • Where can find Oracle error code and message?

    Where can find Oracle error code and message?

    http://otn.oracle.com/pls/db92/db92.to_toc?pathname=server.920%2Fa96525%2Ftoc.htm&remark=docindex
    That would be the "Error Messages" manual.

  • Where i can find examples to load data xml in oracle xmldb?

    hello, where i can find examples to load data xml in oracle xmldb, i don´t have much experience.
    thanks

    there are many ways to do this. but the final solution will be basd on your requirment.
    look through the oracle documentation
    "Oracle 9i XML Database Developers Guide- OracleXMLDB"
    for details and if it is not clear pls post your requirement in this forum.

  • Where we can find Short Text data type attachment

    Hi,
    file type attachements are store in fnd_lob.
    Where we can find Short Text data type attachment in oracle apps.
    Regards

    Hi,
    You can find short text data type attachments in FND_DOCUMENTS_SHORT_TEXT table.
    Please also refer link:
    Oracle Apps Gurus: Attachments in Oracle
    Attachments in Oracle Applications
    Hope this helps!!!
    Best Regards,

  • Where I can find the java class about xml

    I need transfer a xml file to oracle use Java. I find a Java program can do it, but the java progran need a class(oracle.xml.sql.dml.*) and I don't find it.
    I use Kawa 4.01a and Java 1.3.
    I need people tell me where I can find the class.
    Thanks
    Chih-Ping Yang

    Go to: http://technet.oracle.com/tech/xml/oracle_xsu/
    Select [Software] from the tab on the top
    and download OracleXML SQL Utility.
    If you're using Oracle8.1.5, download version
    111. If using Oracle8.1.6, download XSU12.
    Unzip the archive file.
    Under the lib directory, there should be
    a jar file. This jar file contains the class
    you're looking for.
    You do not need to unzip this file. Just set
    it in your CLASSPATH.

  • Where I can find documentations on how to use MyComponse API ?

    Where I can find documentation on how to use MyComponse API ?
    Any example ?
    Thanks

    not 100% sure at which point the callout to BEFOREPROCESSCOMPOSE is done, but during the process logs phase, the data in the CVR$ tables is copied into the clg$ tables, and the cvr$ table dml flags cleared
    unles the query is very complex/long running why not join the clg$ tables (only have the data that has changed, so smaller than the cvr$ tables, to your base tables for determining if relevant within the MyCompose needCompose method?
    an example from one of our MyCompose classes is
    public int needCompose(Connection conn, String clientid) throws Throwable{
    boolean baseDirty = false;
    Statement st = conn.createStatement();
    String sql = null;
    int rowCount = 0;
    int fetchCount = 0;
    ResultSet rows;
    // log user
    // sql = "INSERT INTO qpub_log (TIMESTMP,message) "
    // + " values (sysdate, '" + clientid + " assd' )";
    // rowCount += st.executeUpdate(sql);
    // need to compose if there are any relevant changes to assessment details FOR
    // TIR / SOLO assessments
    // Inspection history checklists
    // PIJ marking sheets
    // INSSI
    // Risk Assessment)
    // also changes to (in case of underlying alterations causing data to be withdrawn)
    // STATUS_LOGS
    // ROLE_ASSGNTS
    if(this.baseTableDirty("CDB_OWNER", "ASSESSMENT_DETAILS")){
    return oracle.lite.sync.MyCompose.YES;
    if(this.baseTableDirty("CDB_OWNER", "STATUS_LOGS")){
    sql = "SELECT count(clg.context_key) "
    + "FROM CDB_OWNER.ROLE_ASSGNTS rola "
    + " ,CDB_OWNER.USER_ACCOUNTS usra "
    + " ,CDB_OWNER.CLG$STATUS_LOGS clg "
    + "WHERE usra.user_name = '" + clientid + "' "
    + "AND rola.rolat_rol_code IN ('INSPECTOR','COVER_INSP','DELEG_INSP') "
    + "AND rola.context_key_by=to_char(usra.par_id) "
    + "AND rola.context_key_for=clg.context_key "
    + "AND clg.staa_seq_no=47 ";
    rows = st.executeQuery(sql);
    rows.next();
    fetchCount = rows.getInt(1);
    if (fetchCount != 0) {
    sql = "INSERT INTO qpub_log (TIMESTMP,message) "
    + " values (sysdate, '" + clientid + " assd stal" + fetchCount + "' )";
    rowCount += st.executeUpdate(sql);
    return oracle.lite.sync.MyCompose.YES;
    if(this.baseTableDirty("CDB_OWNER", "ROLE_ASSGNTS")){
    sql = "SELECT count(clg.id) "
    + "FROM CDB_OWNER.ROLE_ASSGNTS rola "
    + " ,CDB_OWNER.USER_ACCOUNTS usra "
    + " ,CDB_OWNER.CLG$ROLE_ASSGNTS clg "
    + "WHERE usra.user_name = '" + clientid + "' "
    + "AND rola.rolat_rol_code IN ('INSPECTOR','COVER_INSP','DELEG_INSP') "
    + "AND rola.context_key_by=to_char(usra.par_id) "
    + "AND rola.id=clg.id ";
    rows = st.executeQuery(sql);
    rows.next();
    fetchCount = rows.getInt(1);
    if (fetchCount != 0) {
    sql = "INSERT INTO qpub_log (TIMESTMP,message) "
    + " values (sysdate, '" + clientid + " assd rola" + fetchCount + "' )";
    rowCount += st.executeUpdate(sql);
    return oracle.lite.sync.MyCompose.YES;
    // if no relevant changes do not compose
    return oracle.lite.sync.MyCompose.NO;
    }

  • Where I can find sample to practice 10.1.3?

    I am beginning the 10.1.3
    where I can find sample souce for begninner?
    thanks

    User,
    Although you don't mention specifically what you would like to get started with (plain Java, ADF, BPEL, etc)...
    You can find pllenty of tutorials at http://www.oracle.com/technology/products/jdev/index.html
    Hope this helps,
    John

  • Where I can find information about forms 11g

    Hi,
    I want know ,where I can find information about forms 11g?
    Thanks,
    Pavan.

    On the [ forms Modernization|http://www.oracle.com/technology/products/forms/forms_modernization.html] page is a presentation/webcast with new features.
    I hope this helps...
    Edited by: poelger on Feb 27, 2009 7:26 AM

  • Where I can find an example for an ADF application

    where I can find an example for an ADF application where the view layer is JSF and the Business service layer is JAVA with JSF controller as controller layer
    Edited by: belal on Jun 18, 2011 11:59 PM

    I created new Fusion web application so I have now to parts in the application navigator (model, viewcontroller)
    I want to write java class in the Model part as following:
    package persistence;
    import java.sql.Connection;
    import java.sql.DriverManager;
    import java.sql.PreparedStatement;
    import java.sql.ResultSet;
    import java.sql.SQLException;
    import java.sql.Statement;
    public class DBManager {
    Connection connection = null;
    public DBManager() {
    super();
    public void init() {
    try {
    // Load the JDBC driver
    String driverName = "oracle.jdbc.driver.OracleDriver";
    Class.forName(driverName);
    // Create a connection to the database
    String serverName = Constant.DB_SERVER_NAME;
    String portNumber = Constant.DB_PORT_NUMBER;
    String sid = Constant.DB_SID;
    String url =
    "jdbc:oracle:thin:@" + serverName + ":" + portNumber + ":" +
    sid;
    String username = Constant.DB_USER_NAME;
    String password = Constant.DB_PASSWORD;
    connection = DriverManager.getConnection(url, username, password);
    System.out.println("*");
    System.out.println(connection.getCatalog());
    } catch (ClassNotFoundException e) {
    System.out.println("Could not find the database driver");
    } catch (SQLException e) {
    System.out.println("Could not connect to the database");
    e.printStackTrace();
    and wrote JSP page in the view controller part as following :
    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
    "http://www.w3.org/TR/html4/loose.dtd">
    <%@page import="persistance.*"%>
    <% persistance.DBManager manager = new DBManager(); %>
    <%@ page contentType="text/html;charset=windows-1252"%>
    <html>
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=windows-1252"/>
    <title>Browse</title>
    </head>
    <body>
    <table>
    </table>
    </body>
    </html>
    but this I have the following error in the jsp page :*type persistance.DBManager not found*
    my job is to build simple ADF application using JSF and java without any ADF faces or JPA or any another technology
    thanks
    Edited by: belal on Jun 19, 2011 12:51 AM

  • Urgent , where i can find the description of table ?

    Hello all ,
        Has anyone can tell me where i can find the description of transparent table ?
        also include the description of fields ...
        is these description saved in a special place ( i mean in another table )???? Mmmmm .......
        because i want to use crystal report XI to connect oracle 9i . but i can't find the description on the table list ... ...
        please let me know the true , many thanks ... ...
    thanks a lot !
    Best Regards,
    Carlos

    Hi Carlos,
    are you saying the description of the table doesn't show up in CR ?
    which connectivity are you using ?
    thanks
    Ingo Hilgefort
    Business Objects

  • What are provided skin with ADF faces and where i can find more ?

    Hi
    thank you for reading my post
    where i can find more skins for ADF faces ?
    I know
    Oracle , srdemo
    is there any other skins available ?
    Thanks

    Find your serial number quickly
    if it's a win ps cs6 and it's installed, you can use belarc advisor to recover the sn, Belarc Advisor - Free Personal PC Audit, for software, hardware and security configuration information on your computer.…

Maybe you are looking for

  • How can I determine the type of video out connector I need?

    Howdy, I have a white macbook purchased Jun/2008. I want to connect to a TV but don't know what adapter I need. How can I determine the type of video out jack my macbook has? System Profiler says the model identifier is "MacBook 4,1". Under Graphics/

  • Error message when i open itunes

    Hello, Can anyone help me with this? I get this error message every time I plug my ipod in and open itunes. Also the do not disconnect message flashes constantly and will not go away. I've tried everything the website and the message boards suggest.

  • Dll file to change monitor resolution to 1024*768

    hi, i want to change my  computer monitor resolution to 1024*768 programatically. If anybody have this .dll file please suggest me so that i can call this dll in labview apllication and will set my PC resolution to 1024*768 . Please do the needful. R

  • Background Application

    a) How to create Background Application by masking any window (command prompt,Frame etc..). b) If I do logout also, It has to run.

  • The problem of login

    when i login b database from oem in windows the error show : 'can not parse the sid' but i use sqlplus in windows to login the database is successful. i have start listener of database there is my tns of oracle10g client in windows BBK_172.16.3.16 =