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

Similar Messages

  • Date format for oracle lite client database

    hello....
    When data is entered opened on the oracle lite webtogo OC4J client is giving the following errors:
    JBO-25009: Cannot create an object of type:java.sql.Date with value:2/21/08 12:00 AM
    JBO-27014: Attribute CreationDate in AppModule.ApplicantIncomesView1 is required
    JBO-27024: Failed to validate a row with key oracle.jbo.Key[85685 ] of type AppModule.ApplicantIncomesView1
    Which date format is supported on the OC4J client?The application has been developed using Jdeveloper JSF/ADF BC technology.

    user6998712 wrote:
    Hi all,
    My client has installed Oracle Lite version 10.3.0.3. Oracle Lite Database file (ODB) tends to grow too large. Oracle recommends resizing the Oracle Lite database by running Defrag.exe tool. please post URL where this is documented

  • Oracle Lite Sync error

    Im getting the following error when sync. ???? Cant trace it please help
    Sync session exception stack trace:
    java.sql.SQLException: ORA-00932: inconsistent datatypes: expected DATE got NUMBER
         at oracle.jdbc.dbaccess.DBError.throwSqlException(DBError.java:189)
         at oracle.jdbc.ttc7.TTIoer.processError(TTIoer.java:242)
         at oracle.jdbc.ttc7.Oall7.receive(Oall7.java:554)
         at oracle.jdbc.ttc7.TTC7Protocol.doOall7(TTC7Protocol.java:1478)
         at oracle.jdbc.ttc7.TTC7Protocol.parseExecuteFetch(TTC7Protocol.java:888)
         at oracle.jdbc.driver.OracleStatement.executeNonQuery(OracleStatement.java:2077)
         at oracle.jdbc.driver.OracleStatement.doExecuteOther(OracleStatement.java:1987)
         at oracle.jdbc.driver.OracleStatement.doExecuteWithTimeout(OracleStatement.java:2704)
         at oracle.jdbc.driver.OraclePreparedStatement.executeUpdate(OraclePreparedStatement.java:458)
         at oracle.lite.sync.Subscription.execPrepUpdate(Unknown Source)
         at oracle.lite.sync.DmlProcessorM.executeInsertUpdate(Unknown Source)
         at oracle.lite.sync.DmlProcessorM.executeInsertUpdate(Unknown Source)
         at oracle.lite.sync.DmlProcessorDB.reExecuteDml(Unknown Source)
         at oracle.lite.sync.DmlProcessorDB.flushIs(Unknown Source)
         at oracle.lite.sync.HeliosSession.startSession(Unknown Source)
         at oracle.lite.sync.resume.Client$1.run(Unknown Source)
         at oracle.lite.sync.resume.ThreadPool$PoolTask.run(Unknown Source)

    I know the Database Mobile Server (inc. legacy Database Lite) forum doesn't get a lot of traffic but it really is the best place to ask Lite questions. It is an entirely different product from the real database and as such requires specialist knowledge.
    At the very least you should cross-post these questions there. I'm not normally a fan of duplicate postings but I make exceptions for these cases.
    Good luck, APC

  • How to connect using netbean 6.5 and oracle lite 10g

    Hello everyone.. I am really really new in this kind of thing. My task is that I need to develop a simple system using netbean and oracle lite 10g..Does anyone can at least give me a little bit tutorial for a head start in order to connect them.. I really appreciate for those who answer this.. Thank you guys...

    you mean to connect from java to oracle lite server or client?
    -if it is server you mean then you probably need to run some oracle apis (e.g. the consolidator aps).
    String url="MOBILEADMIN/123@jdbc:oracle:thin:@MYSERVER:1521:MYDB" ;
    ResourceManager.initialize(url);
    rm = ResourceManager.getInstance();
    User usr = rm.getUser(user);
    for (Enumeration e = usr.getDevices(); e.hasMoreElements();) {
    Device dev = (Device)e.nextElement();
    }//AND you may continue from here in order to send commands to the devices
    -if you have a oracle repository at the back end and you want to connect to that then you can connect like:
    DriverManager.registerDriver ((Driver)Class.forName ("oracle.jdbc.driver.OracleDriver").newInstance ());
    String url="jdbc:oracle:thin:@myserver:port:database;
    c=DriverManager.getConnection( url,"username", "password" );
    s=c.createStatement();
    s.executeQuery("Select TRIM(CODES) AS CODES,TRIM(SURNAME)||'_'||TRIM(FIRSTNAME) AS NAME from MYDB.USERS");
    ResultSet rs =s.getResultSet();
    -now if you want to connect to the oracle lite client database then you may connect using the polite
    you should write something like (i havent tried it because i use handheld clients)
    String ConnectMe=("jdbc:polite:SCOTT/tiger:polite;DataDirectory=c:\Oracle_Home;Database=polite;IsolationLevel=SINGLE;USER;Autocommit=ON;CursorType=DYNAMIC")
    try {
    Connection conn = DriverManager.getConnection(ConnectMe)
    catch (SQLException e)
    (check the internet for jdbc:polite connection strings)
    gl

  • 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 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.

  • Client Upgrade issue in Oracle Lite Database 10g 10.3.0.3.0

    Hi all,
    Details: My Environment is Oracle Database 11g R1(11.1.0.6.0) With Oracle Lite Database 10g R3(10.3.0.3.0) on Windows 2003 Server R2 SP2.
    Recently i have upgrade my oracle lite database from 10.3.0.2.0 to 10.3.0.3.0 and also applied recent opatch (p12812978_103030_Generic.zip). Upgrade and installation of opatch got successfully completed. When i tried the client synchornization for the very first time (FCS and Data Download) FCS and Data Download got Successfully completed but the problem is usually Once the FCS and Data Download Got Completed , Screen goto webtogo home page but in my case i am getting a screen name called "client upgrade" with options yes or no if choose yes it prompting please wait screen nearly for 1 hours i am not getting any response from the screen. if choose no simply it goto my webtogo home page. Please Note before choosing the yes option i have checked what version i am currently having it show 10.3.0.3 i don't know why it asking for the client upgrade. Please Advice me on this how to avoid this screen (Client Upgrade).
    Thanks
    Shan

    Hi,
    i am not upgrading the existing environment of Oracle Lite Client i am creating a new environment which doesn't have the Oracle Lite Client. In the document itself they have mentioned like this "These steps assume that you have a 10g Release 1 or 2 Branch Office environment already configured and synchronized. If you do not have this environment currently configured, you do not need to upgrade." To be Clear What i am doing is with help Oracle Lite Branch Office i will be downloading a user from Mobile Server for that i have to do the following
    1.FCS(Fresh Client Setup for that i have to run the setup.exe which is coming for Oracle Lite Branch Office) and
    2.Data download (Data will be get download from Mobile Server in the form of odb),
    3. Usually Once the FCS and Data Download got completed, the screen will goto the webtogo home there i can see my branch offlice applications.
    4. But in my case i am getting prompted by screen and the screen name called "Client Upgrade" with options yes or no if i choose yes screen got hanged else if i choose no then only screen moving the webtogo home page. Say can u r having existing environment in your machine due to some reasons u have upgrade or u have installed optach on the mobile server in that case while doing the client synchronication we can do the client upgrade by running the update.exe becasue client side will having the old binary file we need to renew it.
    5. But I am not upgrading the existing environment. I am creating a new environment which means i am doing a fresh client setup and synchronization for the very first time. While doing the FCS on my client side for the very first time i will be getting the latest binaries rite then why the screen is moving to client upgarde page i don't have any idea on this.
    Please Advice.
    Thanks
    Shan

  • Administer defrag remotely for Oracle lite client database?

    Hi all,
    My client has installed Oracle Lite version 10.3.0.3. Oracle Lite Database file (ODB) tends to grow too large. Oracle recommends resizing the Oracle Lite database by running Defrag.exe tool. But it has to be installed manually on each handheld device. Does anyone know how to administer Defrag.exe remotely from Oracle Lite Server or can it be done in another way?
    Thanks.

    user6998712 wrote:
    Hi all,
    My client has installed Oracle Lite version 10.3.0.3. Oracle Lite Database file (ODB) tends to grow too large. Oracle recommends resizing the Oracle Lite database by running Defrag.exe tool. please post URL where this is documented

  • 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}

  • XE for Oracle Lite

    Is it possible use Oracle XE as back-end Oracle database for Oracle Lite clients?
    And how about java support?

    Technically it would depend on what dependencies the sync server that Oracle Lite uses. I believe that it has java dependencies, so probably not. I will check with the Oracle Lite developers.
    From a license point of view, we will have to decide. Given that we don't see XE as suitable for a master in a replication environment, I doubt that we will see it as suitable for the equivalent functionality in an Oracle Lite environment

  • Oracle Lite, optimizer?

    Hi all!
    I'm in Oracle lite 10.3...what type of optimizer use Olite?
    I've some mysterious results in a select, only i change the order in the where conditions and the results are distincts...

    Hey Anastasia,
    Do you mean for the client or for MGP? I am assuming you want to unnest the subquery within the COMPOSE phase. Correct?
    Here is the only reference to unnesting on the client in the documentation:
    Example 5
    In this example, the "ordered" hint selects the EMP table as the outermost table in the join ordering. The optimizer still attempts to pick the best possible indexes to use for execution. All other optimizations, such as view replacement and subquery unnesting are still attempted.
    Select //ordered// Eno, Ename, Loc from Emp, Dept
    where Dept.DeptNo = Emp.DeptNo and Emp.Sal > 50000;
    But if this is your MGP that you are inquiring about, just alter the publication select statement with:
    SELECT /*+ UNNEST */ * FROM SOMESCHEMA.SOMETABLE WHERE BLAH, BLAH, BLAH

  • Oracle lite webtogo

    hello...
    we have to develop an offline application.For this,we are using jdeveloper to develop the application.Can we use oracle lite webtogo?If we use oracle lite webtogo can we work offline?i.e in the absence of net connectivity or do we need a connection to mobile server?
    how is it different from using oracle lite for win32

    Webtogo is a Servlet Runner that is installed on a clients machine. Webtogo embedded your J2EE application into the webtogo database and you have access to that application through the mobile workspace. In 10.3, you can replace Webtogo with OC4J. Webtogo can handle Struts, Tiles, Servlets, JSP etc. OC4J will allow ADF development as well as be J2EE 1.4-compliant container. Webtogo is J2EE 1.3
    Webtogo is built on top of of Win32. The replication part is almost exactly the same. The only difference is, your application must run within the Webtogo JVM context.

  • Olregister with oracle Lite 10.3.0.3.0

    Hi,
    Is anyone here using olregister.exe in command line on win32 client? This utility is to change the user registred on a client device.
    I tried to use the syntax provided in the documentation but the GUI always pop-up.
    Here is what they say in Oracle Lite Doc :
    Alternatively, you can execute olregister.exe on the command-line. The syntax is as follows:
    olregister.exe /deregister=yes
    olregister.exe /register=yes /user=<username> /password=<pwd> /server=<URL>

    Hi,
    I will raise a BUg in Oracle. We cannot use the GUI it must be an automatic process..
    I will update this thread when I get an answer fro Oracle.

  • Oracle Lite Capabilities

    I have a few small questions around the capabilities of Oracle Lite within certain environments:
    1) If i have multiple connection mediums ie . GPRS / Wireless LAN / Cradle etc - is there a way to dynamically choose which one to use - Can i set up a order of preference. If i'm in the office and the device is in the cradle it would be silly to use GRPS to sync for example. How can i setup Oracle Lite to use the cradle as default , fall back on the Wireless LAN and then GRPS if neither of the above are available.
    2) Can i set a pocket PC device to automatically poll for a connection - check whether it can sync with the server. Not have the user initiate the sync. On Win32 you have the mobile client which you can configure - does that run on PocketPC ?
    3) Memory cards - I would like to use the memory card as the default data store for my Oracle Lite install and database files. If the device loses it's primary configuration the database and binaries should be intact ? - how do i manage this ? Is there a way to address the memory card in the install parameter file to tell it to drop the binaries / data files there.
    4) Once i sync recover the device - with the data / binaries intact - what would the result be on re-installing Oracle Lite from the Mobile Server? Would it overwrite my existing configuration ? or just update / sync ?
    Your answers would be greatly appreciated.

    from the below, i assume you are using a pocket PC client (PDA?) if so
    1) nothing directly to do with Oracle lite. You need to look at the connections/internet connection default settings on the device itself. This should allow you to set the switch over as you require. lite only uses the active connection for synchronisation, it relies on the device to establish the connection itself
    2) you would normally want the user to initiate, as you may have some problems with uncommitted data if the device is in use, and these would not be transferred. If you hit a complete refresh required situation it could cause data to be lost. We have an unattended facility in our application that uses a timer to count down to a timeslot defined in the database, it then uses the API to attempt a sync, and if this fails goes into a retry mode. You could try something similar, but make sure all data ia committed
    3) you do not say what version you are on, but in 10g on a PDA, if there is a memory card present when it starts the sync, then it should use this by default (in fact you have to take it out for it to put the files in main memory). You can change this by looking at the settings in the odbc file in the orace directory - this has the database file locations. simplest solution is to remove all odb files and odbc and polite, put in the memory card and sync to re-create the databases
    4) to re-install oracle lite keep a copy of the cab file on the memory card. run this to re-build oracle lite. I am not 100% sure, but it would be worth keeping a copy of the odbc file on the card, and copying this back to orace when recovering as well

  • Android 2.1 and Oracle lite.

    Hi all,
    Can andriod 2.1 device (Samsung galaxy s) be used with oracle lite and mobile server along with a application developed with vb .net?
    I do not see any device platform for this like ARMV4. Will there be similar mechanism of deploying and any work around for this?
    Thanks
    Paninie

    hi there,
    as far as the android is concerned to my knowledge there is no olite client released yet, (please correct me if im wrong).
    what you can do is that you can have the sqllite client on it instead of the olite one.
    there is a chapter describing a rather complicated in my opinion process for making it to work but android has some restrictions and so it is reasonable
    please check
    http://download.oracle.com/docs/cd/E12095_01/doc.10303/e16214/sandroid.htm#BABEIFCJ
    As described on the Android developer Web site at http://developer.android.com, all applications for the Android platform are required to be digitally signed in order to be installed on the Android device. This key is also used to encrypt the SQLite database. Thus, only the user with the key can access the database and perform synchronization.
    Because of the required key, you cannot download and install the SQLite Mobile client binaries unless they are downloaded within the context of a signed application. Thus, there is no option for a manual synchronization through mSync. Instead, all manual synchronization events are invoked through synchronization APIs.
    there is an example following in how you can perform sync through the android MDK_ROOT>Mobile\Sdk\samples\Sync\android\simple_sync_android
    for the versioning you can check
    http://download.oracle.com/docs/cd/E12095_01/doc.10303/e16214/instsqlite.htm#CACDHHED
    Platform Automatic synchronization
    Device management through the DM Agent
    Blackberry
    No
    No
    Android
    No
    No
    Win32
    Yes
    Yes
    WinCE
    Yes
    Yes
    Linux
    Yes
    Yes
    minimum is Android 1.5
    give it a try!thks
    Edited by: vasileios on 10 Μαρ 2011 11:00 μμ

Maybe you are looking for

  • Secondary methods : Error when starting submethod

    Hi, I have designed a workflow for payment request : For the approver i am displaying  the document in edit mode thorough standard method .I am calling that method ( Edit method ) in the secondary method of the decision tab( METHODS tab)  .But i am g

  • Safari 7 in Mavericks - My webpage does not display correctly.

    Wondering if this has been a bug for anyone else. The navigation menu of my website does not stay in its div container. This only occurs in the new safari 7 in Mavericks. This problem can be seen here www.abovethestandardsounds.com .  I have looked a

  • How can I get items in Seamonkey calendar to appear in ical?

    I use SeaMonkey as my browser/email/html engine.  I would use Safari/Mail if it was more integrated, but that is another tale.  Right now, I get various meeting notices in my email, that I put into the Seamonkey calendar attached to the email client.

  • Importing Erwin models to SQL Developer Data Modeler (SDDM)

    Has anyone successfully done this? The real problem I am having is figuring out how to export the model from Erwin. SDDM expects an XML file from Erwin, but we have not figured out where in Erwin there is a XML export option. I am assuming someone in

  • Reader/Acrobat SDK Licensing Query

    I am developing an application in C# and this application will display the PDF document on a form. I have 3 questions as follows. Question one : I am currently using the axAcroPDF which is exposed in the free Acrobat Reader. Now, if I deploy my appli