Oracle.Lite.Data_Win32.dll

Where can I download this reference?
Creating a win32 application for oracle lite on VB dot net.

Dim cmd As IDbCommand
Dim conn as LiteConnection
Dim reader As IDataReader
Try
conn = New Oracle.Lite.Data.LiteConnection("polite")
conn.Open()
cmd = conn.CreateCommand()
cmd.CommandText = "select c1, c3 from test_blob"
reader = cmd.ExecuteReader()
While reader.Read() = True
MsgBox(reader.GetString(0))
End While
reader.Close()
cmd.Dispose()
conn.Close()
Catch ex As Exception
MsgBox(ex.Message)
End Try

Similar Messages

  • Read sharing violation after System.exit in oracle lite DLL

    I am using JRE 1.3 and successfully managed running some sql statements over jdbc.
    When the java class is finished (implicit exit) then no error appears.
    When I exit the code using System.exit(0) there is a windows dialog
    showing a read access error AFTER the java class finished.
    probably there is some cleanup the oracle DLL wants to do after the JVM exited?
    Please help mailto:[email protected]
    The sample code below can be used.
    * Title:
    * Description:
    * Copyright: Copyright (c) 2001
    * Company:
    * @author Ivan Motsch
    * @version 1.0
    import java.util.*;
    import java.io.*;
    import java.sql.*;
    public class TestOracleLite{
    public TestOracleLite(){
         public void start(){
              Statement stm=null;
              Connection conn=null;
              try{
                   Properties p=new Properties();
                   p.setProperty("user","system");
                   p.setProperty("password","manager");
                   p.setProperty("DataDirectory","..\\..\\..\\TEMP\\ora4\\db");
                   p.setProperty("Database","ORS");
                   p.setProperty("IsolationLevel","Read Committed");
                   p.setProperty("Autocommit","Off");
                   p.setProperty("CursorType","Forward Only");
                   String ps=getPropertiesAsString(p);
              Class.forName("oracle.lite.poljdbc.POLJDBCDriver");
                   conn=DriverManager.getConnection("jdbc:polite:whatever"+ps);
                   execSql(conn,
                        "drop table test1 cascade"
                   execSql(conn,
                        "create table test1(pk number(32),ncol number(32),scol varchar2(2000),dcol date,rcol long raw)"
                   conn.commit();
                   execSql(conn,
                        "insert into test1(pk,ncol,scol,dcol,rcol) values(?,?,?,?,?)",
                        new Object[]{new Integer(1),new Integer(1111),"Test Text",new java.sql.Date(System.currentTimeMillis()),new byte[]{0,1,2,3,4,5,6,7,8,9,10}}
                   conn.commit();
                   readSql(conn,"select * from test1");
              catch(Exception e){
              e.printStackTrace();
              finally{
                   if(conn!=null){
                        try{
                        conn.close();
                             conn=null;
                        catch(Exception e){e.printStackTrace();}
         private static String getPropertiesAsString(Properties p){
              StringBuffer buf=new StringBuffer();
         for(Iterator it=p.keySet().iterator();it.hasNext();){
              String key=(String)it.next();
                   String val=p.getProperty(key);
                   buf.append(";"+key+"="+val);
              return buf.toString();
         public boolean execSql(Connection conn,String s){
              return execSql(conn,s,(Collection)null);
         public boolean execSql(Connection conn,String s,Object[] binds){
              ArrayList list=new ArrayList();
              if(binds!=null) list.addAll(Arrays.asList(binds));
         return execSql(conn,s,list);
         public boolean execSql(Connection conn,String text,Collection binds){
              PreparedStatement stm=null;
              try{
                   stm=conn.prepareStatement(text);
                   if(binds!=null){
                        int i=1;
                        for(Iterator it=binds.iterator();it.hasNext();){
                             Object o=it.next();
                             if(o==null){
                                  stm.setNull(i,Types.VARCHAR);
                             else if(o instanceof byte[]){
                                  stm.setBytes(i,(byte[])o);
                             else{
                                  stm.setObject(i,o);
                             i++;
                   boolean b=stm.execute();
                   System.out.println("status: "+(b?"ok":"failed"));
                   return b;
              catch(SQLException e){
                   System.out.println("status: "+"error"+" "+e);
                   return false;
              finally{
                   if(stm!=null) try{stm.close();}catch(Exception e){}
         public boolean readSql(Connection conn,String text){
              PreparedStatement stm=null;
              try{
                   stm=conn.prepareStatement(text);
                   ResultSet rs=stm.executeQuery();
                   ResultSetMetaData meta=rs.getMetaData();
                   System.out.print("col: ");
                   for(int i=1,n=meta.getColumnCount();i<=n;i++){
                        System.out.print(""+meta.getColumnName(i)+", ");
                   System.out.println();
                   while(rs.next()){
                        System.out.print("row: ");
                   for(int i=1,n=meta.getColumnCount();i<=n;i++){
                             System.out.print(""+rs.getObject(i)+", ");
                        System.out.println();
                   return true;
              catch(SQLException e){
                   System.out.println("status: "+"error"+" "+e);
                   return false;
              finally{
                   if(stm!=null) try{stm.close();}catch(Exception e){}
         static public void main(String[] args) {
              TestOracleLite t=new TestOracleLite();
              t.start();
              t=null;
              System.exit(0);

    Hi
    After system copy you need to do post system copy activities...
    Please follow according to the installation Guide..
    for example: your sld connection of your new system will be pointing to your source system. So you need to go to VA where in you can find SLD Data Supplier and change the host name, port no relavent to this  i.e. your destination system...i.e.
    new system.. In the same way you can follow doing the post installation activites will solve your issue.
    Regards
    Hari

  • Oracle Lite + Resin + jdk1.2.2 or jdk 1.3.1 problem

    Hi!
    Can some one help me this the following:
    I used Oracle Lite database, Resin app server and jdk1.2.2
    When I try to connect my database through simple java-application, all goes fine! But, when I trying to get database communication from my application server and problem arise. First of all dll's such as
    OLJDBC40.DLL, OLAD2040.DLL, OLOBJ40.DLL, OLOD2040.DLL OLSQL40.DLL are in the Path and JVM loads them at runtime. I got connection to DB. Than I try to get some DatabaseMetaData info and got EXCEPTION_ACCESS_VIOLATION (for jdk1.3) and "java.exe has generated error (for jdk1.2.2)" errors from VM.
    So, any idea?
    Any help apriciated...
    RGS,
    parasolko

    Hi,
    I have got the similar problem when I used MS SQL server + Tomcat + JDK1.3.0 via JdbcOdbc driver. In that configuration the JVM crashs very often. It seems that JdbcOdbc's got unstable problem. Then, I tried other type 4 JDBC driver, it works fine and JVM won't crash. Try Sprinta 2000 JDBC driver, it's a type 4 driver and fast stable.
    Ma

  • Oracle Lite and Oracle 8i Client on Win98

    I've had Olite v8i running on my Win98 machine for a while now. I just installed Oracle 8i Client on my machine. Now, my JDBC driver for Oracle Lite does NOT work. What could have happened here??
    Thanks.
    -Jeremy
    null

    HI Jeremy,
    I think, Your PATH was cranked up.
    The JDBC driver for OLite normally does not use any OCI DLLs, so that should not be the problem. As I said, the OLite dlls may be missing now from the PATH.
    Any error messages? "Does not work" is a bit... fuzzy.

  • Views in Oracle Lite on Win32 Client

    Hi,
    I've created an Oracle Forms application to work with Oracle Lite on the Win32 Client. When creating the application using wtgpack on the Mobile Server, I successfully created snapshots for the 7 tables in the database. After synchronization (msync), all 7 tables are created in the client's Lite database and all data are available. The Oracle Forms application works perfectly.
    BUT: I have to add a view now, a very simple one, joining 2 of the 7 tables. I created this view in the Server database, and tried to use wtgpack to force the view creation on the client's Lite database. When selecting Web-to-Go in wtgpack's "Available Platform" window, a "DDL" tab appears. But my application isn't Web-to-Go platform, but Win32 only. The "DLL" tab is not available when selecting Win32 as platform. How can I force wtgpack to add my view to the application?
    I tried to add the view definition to the "dlls.sql" file in the \repository\app\sql directory .. but the client doesn't get it.
    I tried to create a snapshot in wtgpack (because when using "import" it only shows tables, not views) and type the view definition there .. but the client doesn't get it too.
    Any ideas how the view can be created on the client's Lite database?
    Thanks in advance!
    Dirk

    Dirk
    You dont need to do anything on the lite database.
    Here are the steps for pulling the data from enterprise database.
    1. Install the client -win32 sdk on the client machine. This is used to access lite database because it installs msql, lite drivers etc.
    2. Create snapshots using wtgpack. You can create all the Enterprise database snapshots, views, sequences etc.
    3. Generate the Jar file using wtgpack
    4. Publish the jar file in the mobile server.
    5. Create some users and give access to this application.
    6. Access the server from ur machine: http://[mobileserveripaddress]/setup
    7. Download the Mobile Client for Web-to-Go
    8. Run the setup.exe
    9. Enter using the username, password given to access this application.
    10. Click sync on the menu
    It automatically creates the database and pulls all the data.
    You dont need to do anything.
    Access the database from msql like this:
    msql system/[password]@polite:[urdatabase]
    or
    msql system/[password]@polite:[DSN]
    DSN gets created automatically. check ur ODBC settings.(enter odbcad32 on ur command prompt to see these settings)
    Refer the documentation..sometimes its hazy but its easy once we do it...
    happy weekend....
    Yugandhar

  • JDK/JRE Version support for Oracle Lite

    Hi,
    We have developed an application using jdk 1.4.x which also using Oracle9i Lite 5.0.2 release as a database. Application behaves normal except while closing it throws java exception (Exceptio Guard Page Exception) error.
    Is it because of the JDK Version we are using? What is the JDK/JRE version level supported by Oracle Lite.
    Thanks
    Krishna

    Right
    I got the same problem too.
    When my program and oracle 9i lite is running under JRE1.3.1, everything is ok.
    However, when i migrate the jre to 1.4.x, the program must fail and report DLL exception after closing.
    So trouble~!

  • Oracle Lite on Windows CE

    It is given in documentation that
    "Java stored procedures and triggers, and the Oracle Lite JAC and JDBC interfaces are currently not supported on Windows CE" is
    there is any other way to accomplish this task. I want to access Oracle Lite database
    and perform advance replication thr java program on Windows CE platform.
    null

    This may be helpful (if you still need it)
    In order to use Oracle Lite with Windows CE, I had to write a dll using the libraries and dll's from oracle that were compiled for Windows CE (depending on your processor type: MIPS, SH3, SH4 are supported) There are also sample applications (with source code) that I used to help write the dll. If you install Oracle Lite on a Win32 system, the source code for the sample applications is under /<oracle dir>/lite/pda40/wince and then look under the appropriate processor type.
    I am still working on getting Replication to work from the CE device. I am focusing on HTTP replication, but if you have any idea of how to replicate at all from CE....

  • Cancel long running statement in Oracle Lite (OLITE_10.3.0.3.0 olite40.jar)

    On JDBC statement, there is the method 'cancel' to instruct the database to cancel an executing statement. This works fine on Oracle server database, but not on Oracle lite database. The method call 'cancel' just blocks and the running statement is never interrupted.
    The example I tried is very simple. There is a thread started which executes a long running statement. I noticed, that when moving the cursor forward by calling rs.next(), it just blocks. That would be ok, if the statement could be canceled from within the main thread by stmt.cancel. But this call blocks as well with no implact on the running statement. Why is that? Do I miss something or is it not possible to cancel a long running statements in Oracle Lite?
    In the following my code snipped:
    public class CancelStatement {
         private static final String PATH_DB = "XX";
         private static final String PATH_LIB = "XX";
         private static final String CON_STRING = "jdbc:polite:whatever;DataDirectory=" + PATH_DB + ";Database=XX;IsolationLevel=Read Committed;Autocommit=Off;CursorType=Forward Only";
         private static final String USER = "XX";
         private static final String PASSWORD = "XX";
         public static void main(String args[]) throws Exception {
              System.setProperty("java.library.path", PATH_LIB);
              Class.forName("oracle.lite.poljdbc.POLJDBCDriver");
              Connection con = DriverManager.getConnection(CON_STRING, USER, PASSWORD);
              Statement stmt = con.createStatement();
              Thread thread = new Thread(new LongStatementRunnable(con, stmt));
              thread.start();
              Thread.sleep(3000);
              // stop long running statement
              System.out.println("cancel long running statement");
              stmt.cancel(); // XXX does not work, as call is blocked until out of memory
              System.out.println("statement canceled");
         private static class LongStatementRunnable implements Runnable {
              private Connection con;
              private Statement stmt;
              public LongStatementRunnable(Connection con, Statement stmt) {
                   this.con = con;
                   this.stmt = stmt;
              @Override
              public void run() {
                   try {
                        System.out.println("start long running statement...");
                        // execute long running statement
                        ResultSet rs = stmt.executeQuery("SELECT * FROM PERSON P1, PERSON P2");
                        while (rs.next()) { // here the execution gets blocked
                             System.out.println("row"); // is never entered
                        rs.close();
                        stmt.close();
                        con.close();
                        System.out.println("long running statement finished...");
                   } catch (Exception e) {
                        e.printStackTrace();
    }I would be very glad if you could help me.
    Thanks a lot
    Daniel
    Edited by: 861793 on 26.05.2011 14:29

    Unfortunately Oracle Lite doesn't have this option. You can call your statement from a second thread as you have done, but you won't be able to kill or cancel this operation. The only way to get fix this is by rebooting. You can use process explorer to find the dll process that is executing the SQL, but the tables will be locked and sync would be locked as well until the process is finished running in shared memory.

  • Connecting to Oracle Lite on iPaq

    Hi all,
    sorry to bother you, but I have quite a problem. I am running an application on the Creme VM on my iPaq, and trying to connect to Oracle Lite. Unfortunately, I get this classic error:
    UnSatisfiedLinkError: No oljdbc40 in shared library path.
    I have put the oljdbc40.dll in several places (\windows, \windows\creme\bin, \) but nothing works. Also, I have tried running my app with the commandline option: -Djava.library.path=\windows\creme\bin
    Ofcourse, no solution there. If anyone could give me a hint on this, I would be very grateful.
    Regards, Jean-Pierre Dessart.

    Don't know if you're using J9 as your VM, but if so I had similar problems with other DLLs and the only way to make it see them (even if using java.library.path) was to place them in the bin directory under the path where you installed the VM in the device.
    Hope this helps.
    Regards

  • New Platform in Oracle Lite - Custom Installation

    Hi all,
    I read from the Oracle Lite documentation that the Oracle Lite setup can be customized. For trial I was able to modify the ppc60.inf and push my custom cab file, create a custom directory, install a cab file.
    I would actually want to perform the same steps for my custom setup apart from using the same setup as I donot want to disturb that provided by Oracle Lite. I see from the documentation "5.2.2 Installing Standard SDK WinCE 5.0 CAB Files for Your Mobile Client" this can be achieved. I followed the steps in these.
    I created an ini file and registered it with the server repository running the dmloader. I have placed my cab files and the inf file in the appropriate mobile server installation folders. This is my ini file content.
    [PLATFORM]]
    Oracle MCP;US
    [PLATFORM.Oracle MCP;US]
    TYPE=WINCE_ARMV4I_US_OLITE_MCP
    INF=olite_mcp.inf
    BOOTSTRAP=DeviceInfo
    ATTRIBUTES=update=true&enabled=true&app_upgrade=true&dmc=auto
    I got the new platform in the setup screen as Oracle MCP in the US section. But when I click it in a Win32 machine I get an error as "Access Denied: Oracle MCP;US Resource no found: WINCE_ARMV4I_US_OLITE_MCP" and on a WinCE machine the page navigates to an error page showing all the platforms available. I am not sure of the folders to be created for placing the setup.exe are correct, how do we get the setup.exe for the for the custom installation and if there are any other extra steps to be done.
    If anyone has come across this, could you please help me out ? Thanks in advance
    Edited by: AravindSam on Jan 22, 2009 4:15 PM
    Edited by: AravindSam on Jan 22, 2009 4:16 PM

    The server side logs for the above logs
    log1: devmgr: decodeContext -> 0
    log1: devmgr: basic -> JACK
    log1: devmgr: x-omc-omac -> f2d1d54tRQQ4bCAuexgMZQ50fKA/WEWPB190DDOdRXYKHnEaPd1Jlw==::*
    log1: devmgr: deviceId -> 0
    log1: devmgr: userId -> JACK
    log1: devmgr: agent -> setup1981419478
    log1: devmgr: method
    log1: devmgr: decodeContext -> 0
    log1: devmgr: basic -> JACK
    log1: devmgr: x-omc-omac -> f2d1d54tRQQ4bCAuexgMZQ50fKA/WEWPB190DDOdRXYKHnEaPd1Jlw==::*
    log1: devmgr: deviceId -> 0
    log1: devmgr: userId -> JACK
    log1: devmgr: agent -> setup1981419478
    log1: devmgr: method -> GET
    log1: devmgr: hmac -> algorithm=SHA-1, username=JACK, mac=R+f6Hh6Hk0CDyEscGh/pibTRCfM=
    log1: devmgr: hmac-mac[0] -> JACK
    log1: devmgr: hmac-mac[2] -> SHA-1
    log1: devmgr: decodeContext -> 0
    log1: devmgr: basic -> JACK
    log1: devmgr: CTX1 -> QVRDaGtuc9x+X1ta2gI7xVVlLcQcl/L86NNREMzhj1y2Lbb/OAoxUF3ObTWlAJg8nbbfuPectDqAXucbWcdpTpsPf4CVubWGqYljOy8z/1M=
    log1: devmgr: decodeContext -> s0001000000001
    log1: devmgr: x-omc-omac -> f2d1dwUtRQSpbCAs6hgCZ59ycmuuHUsllnt6eqLyS7mbQ38LrF1Huw==:QVRDaGtuc9x+X1ta2gI7xVVlLcQcl/L86NNREMzhj1y2Lbb/OAoxUF3ObTWlAJg8nbbfuPectDqAXucbWcdpTpsPf4CVubWGqYljOy8z/1M=:
    log1: devmgr: deviceId -> 0
    log1: devmgr: userId -> JACK
    log1: devmgr: agent -> setup1981419478
    log1: devmgr: validate -> oracle.lite.resource.User@19c8b6f2
    log1: devmgr: method -> GET
    log1: devmgr: app name -> DMC
    log1: devmgr: file name -> zlibce.dll
    log1: devmgr: language -> US
    log1: devmgr: WINCE_ARMV4I_US_OLITE_60_5.2 -> zlibce.dll
    log1: devmgr: createFile -> wince/ppc60/armv4i/zlibce.dll
    log1: devmgr: decodeContext -> 0
    log1: devmgr: basic -> JACK
    log1: devmgr: CTX1 -> BRN0QGUb7qMqR8CNXpaU0mAODslHN6JXDDjfI8yM0Nvoev6xhiC4VAA502GpxpdOEwxZBQubyG+d6FL0G0toudoQCuknO9B112jToINvfIE=
    log1: devmgr: decodeContext -> s0001000000002
    log1: devmgr: x-omc-omac -> f2d1d+ItRQQAbCCmQxje7TbqrmgHrJcJP6Gm5As9lzsylKNTBW2bAg==:BRN0QGUb7qMqR8CNXpaU0mAODslHN6JXDDjfI8yM0Nvoev6xhiC4VAA502GpxpdOEwxZBQubyG+d6FL0G0toudoQCuknO9B112jToINvfIE=:
    log1: devmgr: deviceId -> 0
    log1: devmgr: userId -> JACK
    log1: devmgr: agent -> setup1981419478
    log1: devmgr: validate -> oracle.lite.resource.User@19c8b6f2
    log1: devmgr: method -> GET
    log1: devmgr: app name -> Oracle MCP;US
    log1: devmgr: file name -> Oracle MCP;US
    log1: devmgr: language -> US
    log1: devmgr: SQL -> SELECT DISTINCT A.ID,A.NAME,A.DIR,A.PLATFORM,A.VP,A.CLASSPATH,A.PAGE,A.ICON,A.MISC,A.DBUSER,A.DBPWD,A.MAX_CON,A.SHARE_CON,A.PUBLISH_TIME FROM APPLICATIONS A,APP_ROL_USR AE where A.ID=AE.APP_ID and AE.PRIVILEGE=1 and AE.USR_ID=?
    log1: devmgr: ID -> 103
    log1: devmgr: SQL -> SELECT DISTINCT A.ID,A.NAME,A.DIR,A.PLATFORM,A.VP,A.CLASSPATH,A.PAGE,A.ICON,A.MISC,A.DBUSER,A.DBPWD,A.MAX_CON,A.SHARE_CON,A.PUBLISH_TIME FROM APPLICATIONS A,APP_ROL_GRP AE where A.ID=AE.APP_ID and GRP_ID=?
    log1: devmgr: ID -> 1100
    log1: devmgr: SQL -> SELECT DISTINCT A.ID,A.NAME,A.DIR,A.PLATFORM,A.VP,A.CLASSPATH,A.PAGE,A.ICON,A.MISC,A.DBUSER,A.DBPWD,A.MAX_CON,A.SHARE_CON,A.PUBLISH_TIME FROM APPLICATIONS A,APP_ROL_GRP AE where A.ID=AE.APP_ID and GRP_ID=?
    log1: devmgr: ID -> 1104
    log1: devmgr: SQL -> SELECT DISTINCT A.ID,A.NAME,A.DIR,A.PLATFORM,A.VP,A.CLASSPATH,A.PAGE,A.ICON,A.MISC,A.DBUSER,A.DBPWD,A.MAX_CON,A.SHARE_CON,A.PUBLISH_TIME FROM APPLICATIONS A,APP_ROL_GRP AE where A.ID=AE.APP_ID and GRP_ID=?
    log1: devmgr: ID -> 1121
    log1: devmgr: apps -> {Sample1=oracle.lite.resource.Application@17079f, Install=oracle.lite.resource.Application@170f5e, Sample7=oracle.lite.resource.Application@1707a3, Sample6=oracle.lite.resource.Application@1707a2, OLTEST=oracle.lite.resource.Application@170b5f, Sample4=oracle.lite.resource.Application@1707a1, APPAPITEST=oracle.lite.resource.Application@170f28, Sample3=oracle.lite.resource.Application@1707a0}

  • How to access an Oracle Lite 10.2 from native VC++ 2005 mobile app

    Hi,
    I'm developing a MS VC++ 2005 mobile app than will run on Mobile 5 ARM devices. This app needs to connect to an Oracle Lite 10.2 Lite database that is currently installed on those devices.
    I know that the MFC and ATL libraries are not "fully" supported on the mobile platform I need, so I need a way to connect to the Lite database, as those libraries don't provide that kind of functionality.
    I've been looking around for ways to connect to a Lite Database using VC++ 2005 native, but nothing seems to work!
    I've tried SODA but I simply couldn't connect to the database. After that, I've tried OLEDB, as I folowed articles on adapting MFC oledb.h to the mobile platform. Useless, because the articles focused only SQL Server CE.
    Anyone can give me a clue how to access the lite database from VC++ 2005?
    Isn't there any library like the Oracle.DataAccess.Lite_wce.dll for the CF.NET I can use?
    Thanks in advance.
    -- Manuel Costa

    Marc,
    Where can I find those libraries? Are they available to download in the Oracle site?
    The SODA Api has very few documentation, only an Oracle HTML document.
    Do you know any links with useful tips and examples I can use?
    By the way, the Soda API I tried implemented the try-catch exception handling using a special lib (not the try-catch available in the standard VC++ 2005). Has this been changed in the more recent versions you pointed out?
    Thanks in advance.
    -- Manuel

  • Connect to oracle database with Oracle.DataAccess.Lite_wce.dll

    With Oracle.DataAccess.Lite_wce.dll i want to ceonnect to oracle database.
    I try like:
    OracleConnection conn = new OracleConnection("Data Source=(DESCRIPTION=(ADDRESS_LIST=(ADDRESS=(PROTOCOL=TCP)(HOST=xxx)(PORT=1521)))(CONNECT_DATA=(SERVER=DEDICATED)(SERVICE_NAME=baza1)));User Id=xx;Password=xx;");
    conn.Open();
    but it said "S1000[POL-3023] the database does not exist".
    What i am doing wrong?

    what client are you using if you are using windows mobile then
    use
    Oracle.DataAccess.Lite.dll on the handheld
    connection string is "dsn=databasename;uid=SYSTEM;pwd=userpassword"
    the username is always system, the passw0rd the the user password of the specific user that the handheld is created for, the database name depends you can see it in the device->orace->odbc.txt file
    if your re on c# then you should write
    using Oracle.DataAccess.Lite;
    LiteConnection OraCon;
    OraCon = new LiteConnection(connectionstring);
    OraCon.Open();

  • Can't patch mobile 6 client package to Oracle Lite 10.3

    hi,
    I installed Oracle lite 10.3 successfully, and try to install oracle client patch for mobile 6. I do this according to the readme,but failed,the message says,
    Oracle Interim Patch Installer version 1.0.0.0.57
    Copyright (c) 2007 Oracle Corporation. All Rights Reserved..
    We recommend you refer to the OPatch documentation under
    OPatch/docs for usage reference. We also recommend using
    the latest OPatch version. For the latest OPatch version
    and other support related issues, please refer to document
    293369.1 which is viewable from metalink.oracle.com
    Oracle Home : d:\olite10g_1
    Oracle Home Inventory : D:\olite10g_1\inventory
    Central Inventory : C:\Program Files\oracle\inventory
    from : N/A
    OUI location : D:\olite10g_1\oui
    OUI shared library : D:\olite10g_1\oui\lib\win32\oraInstaller.dll
    Java location : "D:\olite10g_1\jre\1.4.2\bin\java.exe"
    Log file location : d:\olite10g_1/.patch_storage/<patch ID>/*.log
    Creating log file "D:\olite10g_1\.patch_storage\6344826\Apply_6344826_03-10-2008_10-13-37.log"
    ERROR: OPatch failed during pre-reqs check.
    any help? thank u

    Ok, I finally found it.....
    Oracle Database Lite Administration and Deployment Guide Release 10.3 (E12089-02)
    7.4.3.1 Enable a Platform for Your Mobile Client
    Not all of the possible platforms are enabled on the Mobile client setup screen. To enable a platform for your client device, do the following:
    On the Mobile Devices screen, click Platforms.
    On the Platforms screen in the Search pulldowns, select the language and either Disabled or All and click Go.
    Select the platform name that you want to enable.
    Enable the device by selecting Yes in the Enable pulldown.
    Click OK. The device is now enabled and will be visible in the client setup screen.
    =====================================================================
    I was on the Platform screen before, but missed the "Enabled" setting under Search.  I looked at the screen and saw only the enabled list, and assumed this was 'all' of the platforms....
    Once I switched the search setting from "Enabled" to "All" I saw my disabled SQLite options.
    7.4.3.1 was under 7.4.3 Extend or Create a Custom Platform.  Wasn't trying to do either of these, so never looked under there before.  Only ran into it when I was going to attempt to create a custom SQLite platform.
    I thought it was just a bad setting somewhere....  Just couldn't find where....
    Thanks for all who looked at my question and userBDBDMS-Oracle for trying to help.

  • Oracle Lite 10.3

    Hi, I found that the release 10.3 of Oracle lite does'nt have the mSync_com.dll. So, in my application, i used the mSync_com.dll which was provided by 9iLite. It works fine most of the times, but some times gives error while synchronization. So, i have to re-register it on client machine. error goes away
    I want to know what component has replaced the mSync_com.dll in 10gLite release 3

    I'm using 3.5, primary because I'm creating a C# application with it! Not quite sure if for Oracle lite you need CF.

  • Oracle Lite not working

    Definitely I can't make it to work.
    I get allways this error : ORA-12537 (TNS Connection closed) with SQL Plus.
    I use Login "system", password "system", host "webtogo.world"
    I tried also login "system", password nothing; or password "master", or "change_on_install"
    When I start webtogo at I get this info :
    H:\Ora9i\Mobile\Server\bin>webtogo
    log1: Translated JDK:'Cp1252' to IANA: 'WINDOWS-1252'
    log1: desktop 1521
    And hangs, doesn't go to the command prompt
    What's wrong ? I don't understand nothing about Oracle Administration, I'm just a developer, help me
    my configuration is this :
    My computer IP : 192.168.0.104
    My computer name : desktop
    Oracle Home : H:\Ora9i
    TNSNAMES.ORA
    WEBTOGO.WORLD =
    (DESCRIPTION =
    (ADDRESS_LIST =
    (ADDRESS =
    (COMMUNITY = tcp)
    (PROTOCOL = TCP)
    (Host = 192.168.0.104)
    (Port = 1521)
    (CONNECT_DATA = (SID = WEBTOGO)
    LISTENER.ORA
    LISTENER =
    (DESCRIPTION_LIST =
    (DESCRIPTION =
    (ADDRESS_LIST =
    (ADDRESS = (PROTOCOL = TCP)(HOST = desktop)(PORT = 1521))
    SID_LIST_LISTENER =
    (SID_LIST =
    (SID_DESC =
    (GLOBAL_DBNAME = webtogo.world)
    (ORACLE_HOME = H:\Ora9i)
    (SID_NAME = webtogo)
    SQLNET.ORA
    NAMES.DEFAULT_DOMAIN = 192.168.0.104
    USE_DEDICATED_SERVER = on
    NAMES.DIRECTORY_PATH= (TNSNAMES, EZCONNECT)
    WEBTOGO.ORA
    [WEBTOGO]
    USE_SYSTEM_CLASSPATH = YES
    MODE = SERVER
    PORT = 1521
    #IAS_MODE=NO
    ORACLE_HOME=H:\Ora9i
    BASE_URL=/webtogo
    ADMIN_TNS_NAME=WEBTOGO.WORLD
    ADMIN_JDBC_URL=jdbc:oracle:oci8:@WEBTOGO.WORLD
    APPLET_USE_THIN_JDBC = YES
    THIN_JDBC_URL=jdbc:oracle:thin:@::
    SITE_OFFLINE_PERIOD=0
    CUSTOM_WORKSPACE=no
    CUSTOM_DIRECTORY=myworkspace
    DEFAULT_PAGE=myfirstpage.html
    ROWS_PER_PAGE_IN_ADMIN_TOOL = 25
    [EXTERNAL_AUTHENTICATION]
    #CLASS=com.acme.SampleAuthenticator
    # Web-to-go workspace's font
    FONT_NAME=Arial
    [FILESYSTEM]
    TYPE=OS
    ROOT_DIR=H:\Ora9i\mobile\server\repository
    #TYPE=O8
    #TYPE=OL
    #TYPE=OS
    # Cache size in MBs
    #CACHE_SIZE=10
    MAX_CONNECTIONS=4
    [DEBUG]
    TRACE_ENABLE=Yes
    # There are 3 trace levels: basic (1), sql (2), java method (4)
    # The TRACE_LEVEL value will be used to do "Bitwise AND" against these
    # 3 levels to decide if trace of any particular level should be printed.
    # For example, 1 for only basic level, 7 for all levels, 3 for basic and sql
    # but not java methods.
    TRACE_LEVEL=1
    # This is comma seperated list of valid user names. Empty string indicates
    # tracing all users, "TRACE_NO_USER" indicates tracing no user.
    TRACE_USERS=
    # The trace output can be FILE, CONSOLE, or REMOTE.
    TRACE_DESTINATION=CONSOLE
    # Value to be used if trace destination is FILE.
    # The base name for the trace file
    TRACE_FILE_NAME=trace.log
    # Maximum file size in MB
    TRACE_FILE_SIZE=10
    # Maximum number of trace file to be used.
    TRACE_FILE_POOL_SIZE=5
    # Does every user have her own file pool?
    TRACE_FILE_PER_USER=No
    # Value to be used if trace destination is REMOTE.
    # Machine name and port where wsh.exe -m is running. Web-to-go
    # will send debug output to that machine.
    #TRACE_REMOTE_MACHINE=
    TRACE_REMOTE_PORT=2000
    [APPLICATIONS]
    XMLFILE = ws1.xml
    PACK_HELP=H:\Ora9i\mobile\doc\wtg\html\wtgdep.htm
    [PUBLIC]
    oracle.lite.sync.ConsolidatorServlet=/Consolidator
    [CONSOLIDATOR]
    # Installer will change these values
    SERVER_VERSION=8.1.7
    # 8.1.7
    # Installer won't change these values
    MAX_THREADS=3
    JDBC_DRIVER=oracle.jdbc.driver.OracleDriver
    CREATE_USER_OPTIONS_O8I=PROFILE CONSOLIDATOR_CLIENT_P DEFAULT TABLESPACE USERS QUOTA UNLIMITED ON USERS TEMPORARY TABLESPACE INDX QUOTA UNLIMITED ON INDX
    CREATE_USER_OPTIONS_O8=PROFILE CONSOLIDATOR_CLIENT_P DEFAULT TABLESPACE USR QUOTA UNLIMITED ON USR
    TEMPORARY TABLESPACE TEMPORARY QUOTA UNLIMITED ON TEMPORARY
    TEMP=H:\Ora9i\mobile\server\bin
    WTG_PROXY_PORT=80
    TRACE_ENABLE=Yes
    # There are 3 trace levels: basic (1), sql (2), java method (4)
    # The TRACE_LEVEL value will be used to do "Bitwise AND" against these
    # 3 levels to decide if trace of any particular level should be printed.
    # For example, 1 for only basic level, 7 for all levels, 3 for basic and sql
    # but not java methods.
    TRACE_LEVEL=1
    # This is comma seperated list of valid user names. Empty string indicates
    # tracing all users, "TRACE_NO_USER" indicates tracing no user.
    TRACE_USERS=
    # The trace output can be FILE, CONSOLE. Note REMOTE is not valid.
    TRACE_DESTINATION=CONSOLE
    # Value to be used if trace destination is FILE.
    # The base name for the trace file
    TRACE_FILE_NAME=mgptrace.log
    # Maximum file size in MB
    TRACE_FILE_SIZE=10
    # Maximum number of trace file to be used.
    TRACE_FILE_POOL_SIZE=5
    # Does every user have her own file pool?
    TRACE_FILE_PER_USER=No

    Hi
    There could be two reasons.
    1) You may be having classesXX.zip where XX can be 111 or 12 in the classpath.
    Remove this from your system classpath
    2) Check the symjit.dll and rename it to some other name in your system. This file belongs to XP and has some problems in running Java programs in P4.
    regards
    Yugandhar

Maybe you are looking for