Oracle 8i Lite CE Driver

I have installed Oracle 8i Lite on my windows 98 (and my NT machine). After running the CESETUP to install on an HP Jornada, I cannot see the ODBC datasource CE. The driver does not seem to be installed.
I am using MS Active Sync 3.0 for the HP running CE 3.01 (Core System Version 2.11)
Thx
Ron
null

If you have added the Olite40.jar file to the IDE_CLASSPATH setting in the jdeveloper.ini file, make sure you restarted JDeveloper after editing the ini file.
Also, make sure you specity 'Olite40.jar' not 'olite40.jar' (watch the case of the archive file name).

Similar Messages

  • Oracle 9i Lite ODBC driver issues

    Does the 9i Lite driver support a concept of username and password when getting a connection?
    With the Oracle 8i Personal ODBC driver, we are doing this, and then if we give a query like 'SELECT CASE_ID FROM CASE_AX', it works; but with the Lite driver, it expects the query to be 'SELECT CASE_ID FROM AXAPG2USER.CASE_AX'. Can we somehow avoid giving the schema name when referring to tables? (This is actually not a big problem, but we would still like to know if there is a way.)

    Are you logging in as AXAPG2USER? Generally, Oracle assumes that non-qualified table names are in the current user's schema. If you want to expose tables in one user's schema to another user without having to qualify the table name, you'll want to create a synonym in the second user's schema that resolves to the table in the first user's schema.
    Justin

  • How to install Oracle Lite ODBC driver without connecting the mobile server

    My Oracle Lite version is 10g R3.
    I am using branch office version application.
    I wanted to connect oracle client database(.odb file) via Lite DSN in a windows XP machine without installing the client in that device.
    Some of my users wanted to access the client database from backend which requires a DSN entry in that device.Oracle Lite ODBC gets registered in the device only when we do a setup from the mobile server or if Oracle 10g Lite MDK is installed.
    I do not want either of this to be done in my user PC. I wanted a ODBC utility which will register oracle Lite ODBC Driver (Normal & Cleint) in the user PC so that i can manually create and configure the DSN.
    Does anyone have a solution for this?
    Regards,
    Ashok Kumar.G

    Dear Sir,
    Yes, you can find the Driver here
    http://www.oracle.com/technology/software/tech/windows/odbc/index.html

  • XML and Oracle 8i Lite

    Hi Wizards
    I'm in an endeavour to do the following things -
    1.Generate XML output from Oracle 8i Lite database
    2.Modify the XML and update the database taking the modified XML.
    My java platform is JDK 1.2. I've used the XML SQL Utility for Java, and in doing so i've been successful with the 1st step. I've used the Oracle 8.1.6SDK JDBC Driver which is compatible with JDK 2.The code fragment is like the following -
    import java.io.*;
    import java.sql.*;
    import java.math.*;
    import oracle.xml.sql.query.*;
    import oracle.jdbc.*;
    import oracle.jdbc.driver.*;
    public class orasql1
    public static void main(String args[]) throws SQLException
    Connection conn = null;
    String tabName = "emp";
    try {
    Class.forName("oracle.lite.poljdbc.POLJDBCDriver");
    conn = DriverManager.getConnection("jdbc:Polite:POlite", "SYSTEM", "manager");
    catch (Exception e) {
    System.out.println("Oracle Connection error\t:");
    System.out.println(e);
    System.exit(0);
    OracleXMLQuery qry = new OracleXMLQuery(conn, "select * from " + tabName);
    qry.setRowsetTag("SCHEMADOC_1");
    qry.setRowTag("EMPLOYEE");
    qry.setStyleSheet("emp.xsl");
    String xmlString = qry.getXMLString(true);
    conn.close();
    try {
    File output = new File("emp.xml");
    FileWriter xmlFile = new FileWriter(output);
    xmlFile.write(xmlString,0,xmlString.length());
    xmlFile.close();
    catch (Exception e) {
    System.out.println("Output file error\t:");
    System.out.println(e);
    System.exit(0);
    I am putting some sample code for step 2 in the following section -
    import oracle.xml.sql.dml.*;
    import java.sql.*;
    import oracle.jdbc.driver.*;
    import oracle.jdbc.*;
    import java.net.*;
    public class orasql2
    public static void main(String args[]) throws SQLException
    Connection conn = null;
    String tabName = "emp";
    String fileName = "emp.xml";
    try {
    Class.forName("oracle.lite.poljdbc.POLJDBCDriver");
    conn = DriverManager.getConnection("jdbc:Polite:POlite", "SYSTEM", "manager");
    catch (Exception e) {
    System.out.println("An error has occurred.");
    System.out.println("Please check your CLASSPATH variable..");
    System.out.println(e);
    System.exit(0);
    OracleXMLSave save = new OracleXMLSave(conn, tabName);
    URL url = save.createURL(fileName);
    save.setRowTag("SCHEMADOC_1");
    int rowCount = save.insertXML(url);
    System.out.println("Successfully inserted "+rowCount+" rows into "+tabName);
    conn.close();
    Compiling the above code is fine, no errors! But while running the application I get the error -
    Exception in thread "main" oracle.xml.sql.OracleXMLSQLException: java.lang.Class
    CastException: oracle.lite.poljdbc.OracleStatement
    at oracle.xml.sql.dml.OracleXMLSave.insertXML(OracleXMLSave.java:345)
    at oracle.xml.sql.dml.OracleXMLSave.insertXML(OracleXMLSave.java:248)
    at orasql2.main(orasql2.java:27)
    My question is whether this thing can be done at all using Oracle 8i Lite? If so then how?
    Waiting for ur advices.
    Biplab
    (An Indian, but at present in Houston, Texas)

    It looks like be a classpath issue. Would you check with the class name.

  • Oracle 9i lite connection with a Java Client

    Hi,
    I would like to connect a Java Client developed using PersonalJava edition for PDA with an Oracle 9i lite version which is also on PDA.
    I would like to know is it possible to connect such a client (Java) using some JDBC drivers on PDA.
    if yes please do suggest a suitable driver and some input tips as to how to connect a GUI developed in Java directly to Oracle on PDA.
    I am not too sure whether some web/application server is required in the whole setup.
    because in N-Tier Architecture we have a middle layer of Application /Web servers in between a client screen(usually a Browser) and Database.
    but I am not aware weather it is possible to directly connect Java Swing or Client application as I mentioned above developed using Personal edition with a database using only some driver software but no other middle ware component in between.i.e forming a 2 tier client server model.
    please do let me know your valuable suggestions at [email protected]
    thanks,
    Ashish

    I connect to the database through the same user that created those tables. Do I still need a public synonym ?

  • Oracle 8i Lite and XML SQL Utility

    Can I use XML SQL Utility with Oracle 8i Lite
    using the Oracle 8i Lite Driver
    null

    There will be an version of the XML SQL Utility appearing here shortly. In the meantime you can download the current version of the XSQL Servlet which has the new v2 compatible oraclexmlsql.jar.
    Oracle XML Team

  • Oracle 8i Lite Sqlplus connections

    Hi
    I am trying to run 2 concurrent sqlplus connections in Oracle 8i lite ... it works fine ... if I dont make any changes to database. But Once I commit the changes .... I am not able to make any more connections ....it gives OCA-30017 "Error Loggin on to non-oracle database" and fails connecting to oracle 8i lite. I am using the standard ODBC driver (Oracle Lite) to connect to sqlplus. Please help !!!
    Thanks
    Prabhu.

    I am using Windows 2000 Professional and I am experiencing the same problem. I can connect to the POLITE database from Oracle8 Navigator and Oracle ODBC 32bit Test but not from SQL*Plus. Here is what I see:
    Connected to:
    Oracle Open Client Adapter for ODBC 6.0.5.29.0
    Oracle Lite ORDBMS 4.0.1.0.7
    SQL> connect system/mgr@odbc:POLite
    Server not available or version too low for this feature
    Connected.
    SQL> connect system/mgr
    ERROR:
    ORA-12203: TNS:unable to connect to destination
    Warning: You are no longer connected to ORACLE.
    Should I try to upgrade my Open Client Adapater (OCA)? Could it be something with my PATH? How can I set up the default TNS to connect to POLITE? Any suggestions?
    <BLOCKQUOTE><font size="1" face="Verdana, Arial">quote:</font><HR>Originally posted by Floyd Teter ([email protected]):
    George,
    Try the following host string: ODBC:POLITE
    Lite typically uses the SID of POLite for installation of the default database, so this host string should do the trick. If not, drop me an email and we'll work through it together.
    Hope this helps!
    FMT
    <HR></BLOCKQUOTE>
    null

  • Problem connecting Oracle 9i Lite to Oracle 9i Database

    Hi,
    I have just started working with Oracle 9i Lite and I am having
    problems connecting to an Oracle 9i (9.0.1) database using the
    packaging wizard. I can connect ok using SQL*Plus but when I connect
    using this wizard the database is located i.e. no errors arise, but
    the database schemas and tables are not found i.e. list is not
    popluated.
    However if I try to connect to an Oracle 8i (8.1.7) database there is
    no problem and the schemas and tables are found with the list being
    popluated.
    Does anyone know what the problem could be?
    Regards
    Andrew.

    I am having a similar problem, where I couldn't connect to Oracle 8i database (817). I am getting a error message when I tried to use Packaging Wizard -> Snapshot -> Import -> Username/password and jdbc:oracle:oci8:@connect string or jdbc:oracle:thin:@host:1521:Sid
    The error message is 'No Suitable Driver. Make Sure the Proper JDBC drive for "jdbc:oracle:oci8i:@<connect string>" is in the classpath"
    I would appricated if someone can send me any help on this.
    My email address is [email protected]
    Thanks
    Joshua

  • Oracle 9i Lite supports taglib

    i want to know wheter Oracle 9i lite supports taglib or not?.also i need all the informations about the jsp versions in oracle 9i lite
    regards
    senthil.

    Hello,
    I am not sure to understand your question.
    Oracle Lite is a SQL Database , and you can access it from Oracle Application Server using the correct JDBC driver and then use the JSP Tag libs to access the data (JSTL SQL) or any JDBC API in J2EE.
    If I am not answering your question please add more details about what you are trying to achieve...
    Regards
    Tugdual Grall

  • Problems generating a JSP using J Developer 3.1 with Oracle 8i Lite

    I am using Oracle 8i Lite release 4.0.0.2.0 with Jdeveloper 3.1 (build 681) on a NT Workstation 4 (build 1381: Service Pack 3).
    In JDeveloper I have set up the connections using the JDBC driver to Oracle 8i Lite JDBC. The ODBC Source is set to POLITE. The Test connection returns SUCCESS!
    I create a new project using the Business Components JSP Application Wizard. This allows me to successfully create the new Business Components required. In step 4 (of 6 ) of the Business Components JSP Application Wizard (Connection), no connections are available for selection via the dropdown and the Username, Driver and URL are all set to ?
    I cannot create a new connection that I can use in this step either.
    I have followed the set up as documented for Oracle 8i Lite.
    I am sure that I am missing something simple.
    Any ideas ?
    Thanks,
    Ketan.

    Use Jdeveloper 3.2

  • Oracle 8i Lite connection problem

    I'm trying to make connection with Oracle 8i Lite native jdbc driver. I'm getting error "Unable to find driver oracle.lite.poljdbc.POLJDBCDriver" when pressing Test button.
    olite40.jar is in IDEClassPath in jdeveloper.ini and Oracle 8i Lite is in Default Project Libraries.
    What I've missed?

    If you have added the Olite40.jar file to the IDE_CLASSPATH setting in the jdeveloper.ini file, make sure you restarted JDeveloper after editing the ini file.
    Also, make sure you specity 'Olite40.jar' not 'olite40.jar' (watch the case of the archive file name).

  • Oracle 8i Lite Version : 4.0

    Hi,
    Could anyone answer this for me, Please.
    I have oracle 8i lite Version 4.0 installed on a Windows NT machine. I do a sqlplus pbs/pbs odbc:polite (using odbc) to connect to sqlplus. At this sametime .. I connect from a different machine (WINNT) to this same oracle 8i lite (Shared Directory) using ODBC. Now, If I do some updates on Machine A and Commit it ... why are the changes not visible in Machine B (sqlplus). I have to exit out and come back in Machine B to see the changes everytime. I have done odbinfo
    -pagelog polite polite. (So that it doesn't create any .plg file and write Directly to ODB file). Please throw some light on this. Is Oracle lite not intended for this !?.
    Thanks
    Prabs

    Try also adding the path to oljdbc40 the SLP and JLP settings in the jdeveloper.ini file.
    The following is from the 3.1 Release Notes:
    JDK 1.2/1.3 and Native Code
    If you are using the Oracle JDBC/OCI or Oracle Lite JDBC Driver with JDeveloper (JDK 1.2/1.3) add the %ORACLE_HOME%/bin directory to java.library.path and
    sun.boot.library.path in bin/jdeveloper.ini. It should look like this:
    [Java_2]
    JDK=java version "JDK1.2.2_JDeveloper"
    Java2VM=OJVM
    JLP=-Djava.library.path=.;%JAVA_ROOT%\bin;%JAVA_ROOT%\jre\bin;C:\ORANT\BIN
    SLP=-Dsun.boot.library.path=.;%JAVA_ROOT%\bin;%JAVA_ROOT%\jre\bin;C:\ORANT\BIN
    If you are executing applications which use the JNI to call native libraries (DLL files) under JDeveloper with JDK 1.2/1.3 it is necessary to edit your project properties. Add to the
    Java VM Parameters, under the Run/Debug tab the following setting: -Djava.library.path=(Path where DLL files are located)".

  • Oracle 8i Lite

    I would like to know if Oracle 8i Lite work with Windows 2000 ?
    null

    The next version of XSQL supports
    specifying an arbitrary <dburl>
    in your XSQLConnections.xml file.
    The current 0.9 technology preview
    only will work with the regular
    Oracle driver.
    Stay tuned in the next week or two
    for the next code drop of XSQL.
    Thanks.
    Oracle XML Team
    http://technet.oracle.com
    Oracle Technology Network
    null

  • Oracle 8i Lite version 4.0.1

    Hello,
    I've installed Oracle 8i Enterprise Edition (8.1.7) and i'm willing to install
    the Oracle 8i Lite version 4.0.1 to sync with Pocket PC. The problem is that
    this version is really old and it's compatable with NT, not with Windows 2000 (wich
    is the OS i have).
    The problem while installing is that Oracle Installer tells me that the Oracle Home
    is currently used by 'Oracle 817 Production' and cannot be used as an Oracle Home for
    'nt'.
    Any help would be appreciated.
    Thanks!

    Try also adding the path to oljdbc40 the SLP and JLP settings in the jdeveloper.ini file.
    The following is from the 3.1 Release Notes:
    JDK 1.2/1.3 and Native Code
    If you are using the Oracle JDBC/OCI or Oracle Lite JDBC Driver with JDeveloper (JDK 1.2/1.3) add the %ORACLE_HOME%/bin directory to java.library.path and
    sun.boot.library.path in bin/jdeveloper.ini. It should look like this:
    [Java_2]
    JDK=java version "JDK1.2.2_JDeveloper"
    Java2VM=OJVM
    JLP=-Djava.library.path=.;%JAVA_ROOT%\bin;%JAVA_ROOT%\jre\bin;C:\ORANT\BIN
    SLP=-Dsun.boot.library.path=.;%JAVA_ROOT%\bin;%JAVA_ROOT%\jre\bin;C:\ORANT\BIN
    If you are executing applications which use the JNI to call native libraries (DLL files) under JDeveloper with JDK 1.2/1.3 it is necessary to edit your project properties. Add to the
    Java VM Parameters, under the Run/Debug tab the following setting: -Djava.library.path=(Path where DLL files are located)".

  • Does Oracle 9i Lite supports Thai language?

    We are developing mobile application[residing in a laptop] using java and Oracle 9i lite version [Release 5.0.2]. The application has English and Thai version. After we upload all the data[thai and english phrases] to Oracle lite from server [residing in Sun Solaris, Oracle 91] we were able to see the Thai characters in mobile, but for some phrases there is an extra English character amended to the phrase. We are not doing any char conversion here, just collecting the data from server and inserting to lite version DB.
    Entries in polite.ini are,
    [All Databases]
    DatabaseID=501
    DataDirectory=C:\oracle\ora90\Mobile\Sdk\OLDB40
    NLS_LOCALE=ENGLISH
    MessageFile=C:\oracle\ora90\Mobile\Sdk\BIN\OLITE40.MSB
    DBCharEncoding=Native
    When i ran through the release document for Oracle9i Lite Release 5.0.2, i can relalize that it is not supporting Thai language. Correct me if i am wrong.
    Did any of the latest Lite version supports Thai language. How about 10g? Or any alternatives is there in Release 5.0.2 itself.
    Thanks and looking forward for your reply.
    Best Regards,
    Muthu

    Hello,
    I am not sure to understand your question.
    Oracle Lite is a SQL Database , and you can access it from Oracle Application Server using the correct JDBC driver and then use the JSP Tag libs to access the data (JSTL SQL) or any JDBC API in J2EE.
    If I am not answering your question please add more details about what you are trying to achieve...
    Regards
    Tugdual Grall

Maybe you are looking for

  • How to get the current selected column and row

    Hi, A difficult one, how do i know which column (and row would also be nice) of a JTable is selected? e.g. I have a JButton which is called "Edit" when i select a cell in the JTable and click the button "Edit" a new window must be visible as a form w

  • Problems with "imported" photos in iPhoto

    The default on my version of iPhoto (V. 8.1.2) seems ot have been just import links.  But I really would prefer to have the photos actually imported into theiPhoto library, so when I upgrade (both iPhoto andmy computer) I can just take the library, a

  • JMF background sound question

    Hi, Does someone know, how to do background sound in an application by means of JMF, or how to do it without jmf ?. Thanks in advance. MSasha

  • What is X-CorrelationID in the OEG 11g transaction log ? How can I get it ?

    Hi May I have question here: what is X-CorrelationID in the OEG 11g transaction log ? How can I get it through policy path and keep it's value ? Thanks. Cliff

  • HudTube application is not work with Youtube

    As on the advertised the HudTube program can work easy with Youtube. It said just copy and paste the url then it will work. But after I did that the message appear to not support with the youtube ! Why is that ? What wrong with my MacBook or do I nee