J2me/kvm connectivity to PALM Oracle lite 8i/9i??

I have a requirement to develop an application in Java for PALM OS with Oracle Lite 8i/9i connectivity. I want to know if j2me/kvm supports connectivity to PALM Oracle lite 8i/9i. Please help me to know what all java VM available in the market which have oracle connectivity(jdbc/odbc/whatever) for Oracle Lite for PALM.
thanks
dk

Thanks for the respose. But I want to have local database in Palm Oracle lite. The oracle lite database will be on palm device. My question is, If we can commect to oracle lite on palm using jdbc/etc?
I am new to J2Me, But what I understand by writing servlets that they will be running on a web server. But I want the program to run on PALM DEVICE(AWT/SWING) with connnnection to local oracle lite.
regards
dk

Similar Messages

  • Does j2me support jdbc for Palm Oracle Lite(8i/9i)

    I have a requirement to develop an application in Java for PALM OS with Oracle Lite 8i/9i connectivity. does j2me support jdbc for Palm Oracle Lite(8i/9i). Please help me to know what all java VM available in the market which have oracle connectivity(jdbc/odbc/whatever) for Oracle Lite for PALM.
    thanks
    dk

    Pleae some one reply, if j2me/kvm supports jdbc/odbc connectivity to oracle lite 9i/8i on palm
    thanks
    dk

  • Configure Oracle Lite DB Connection

    I'm using JDeveloper 10.1.2. How do I configure a DB connection in Jdev to connect to an Oracle Lite DB (the version that comes with BPEL)?
    Thank you,
    Dave

    Oracle Lite DB supports sequences. When you publish your applications you can partition the sequences by assigning windows for each clients.
    -- Ravindra

  • 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

  • Connection to Oracle Lite 8i

    I am trying to make a connection from JDeveloper 2.0 to Oracle
    Lite 8i 4.0.
    I get a connection defined in the connection wizard but I have
    to use the Sun Jdbc Odbc driver and it does not show up in the
    connections dropdown when I go to use it.
    Does anyone know how I can get a usable connection?
    Stan McDaniel
    null

    Laura,
    Can you tell me than what's the use of choosing an Oracle Lite
    driver in the Connection wizzard? The problem discribed below is
    not limited to applets: in applications I can't use my lite-
    connection either.
    And do you know of a way to use a thin driver to connect to an
    Oracle Lite database?
    Thanks a lot for the help so far,
    Marko.
    : Marko,
    : Yes, you can only use the JDBC thin driver when creating an
    : applet (this is generic, not specific to the Infobus). This
    is
    : because the OCI drivers require that the client of the app
    have
    : the OCIJDBC8.dll in their Oracle_Home, and that Oracle_Home be
    in
    : the client's PATH. Because an applet is self-contained, it
    has
    : no way of 'looking outside' itself for that client-side DLL.
    : With the JDBC thin driver, everything is included in the
    : classes111.zip file.
    : Laura
    : Marko (guest) wrote:
    : : Laura,
    : : Great, it works! Well, partly at least. I am now able to use
    : the
    : : driver in JDBC-applications. It is also possible to use the
    : : driver when defining a new Connection with the connection-
    : : wizzard.
    : : The only remaining problem is the fact that the newly
    defined
    : : connection can't be chosen, when I start creating an infobus-
    : : applet. Can it be that only thin and oci drivers can be used
    : for
    : : infobus-applets?
    : : JDeveloper Team (guest) wrote:
    : : : Marko,
    : : : If I remember correctly, Oracle Lite 4.0 was not available
    at
    : : the
    : : : time we released JDeveloper 2.0, so it is possible that
    the
    : : : drivers are not compatible.
    : : : You say that JDeveloper needs the 35 jar. Are you getting
    an
    : : : error when you try to define a connection? Can you tell
    me
    : : what
    : : : that error is? I will try to verify what is happening.
    : : : A few things to try:
    : : : 1. When you add the Oracle Lite library to your project
    : : : properties, make sure it appears before/above any other
    JDBC
    : : or
    : : : EJB libraries. If necessary, select the library in the
    list
    : : and
    : : : drag it up.
    : : : 2. When you edit the IDE Classpath, also make sure the
    : : pointers
    : : : to the Oracle Lite jars come before any of
    : : the 'classes111.zip'
    : : : files.
    : : : Laura
    : : : Marko (guest) wrote:
    : : : : I have the same problem. Oracle Lite 8i is shipped with
    : : : : olite35.jar and olite40.jar. JDeveloper can't use the
    : driver
    : : in
    : : : : olite40.jar for some reason. I have tried the solution
    : : : described
    : : : : below, but JDeveloper needs oljdbc35.dll in the shared
    : : library
    : : : : path to use olite35.jar. Guess what: there is only
    : : oljdbc40.dll
    : : : : in Oracle Lite 8i 4.0.
    : : : : JDev Team (guest) wrote:
    : : : : : Stan,
    : : : : : This is documented in the Release Notes as follows:
    : : : : : 1. Install JDeveloper.
    : : : : : 2. Install Oracle Lite 3.6 or higher.
    : : : : : 3. Launch JDeveloper.
    : : : : : 4. Add a library for Oracle Lite by following these
    : steps:
    : : : : : a.Choose the menu option Tools | Default Project
    : : : : Properties.
    : : : : : b.Click the Libraries button at the bottom of the
    : : dialog.
    : : : : : c.Click the New button on the lower right to add a
    new
    : : : : : library.
    : : : : : d.Name the library Oracle Lite by typing in the
    Name
    : : : field.
    : : : : : e.Add the path to the Oracle Lite driver by typing
    in
    : : the
    : : : : : Class Path field. This should be a jar file called
    : : : : : <oracle_home>\lite\classes\olite36.jar, but check
    : the
    : : : : : documentation for your version of Oracle Lite.
    : : : : : f.Click OK to add the Library. JDeveloper analyses
    the
    : : : : : dependencies for the driver and returns to the
    : : : : Default
    : : : : : Project Properties dialog.
    : : : : : g.Click Add to add Oracle Lite to the default
    project
    : : : : : properties for all future generated projects.
    : : : : Alternatively,
    : : : : : you may add the Oracle Lite driver on a
    : : : : : project by project basis by selecting Project |
    : : Project
    : : : : : Properties and adding the newly created library
    to
    : : the
    : : : : : current project.
    : : : : : 5. Quit JDeveloper.
    : : : : : 6. Add the Oracle Lite jar file to the IDE Classpath
    by
    : : : : following
    : : : : : these steps:
    : : : : : a.Open the file <jdev_home>\bin\jdeveloper.ini.
    : : : : : b.Under the section [Java_Global], add the path of
    the
    : : : : Oracle
    : : : : : Lite driver to the IDEClassPath. This should be a
    : jar
    : : : : file
    : : : : : called
    : : : : : <oracle_home>\lite\classes\olite36.jar, but check
    : the
    : : : : : documentation for your version of Oracle Lite.
    : : : : : 7. Restart JDeveloper.
    : : : : : Stan McDaniel (guest) wrote:
    : : : : : : I am trying to make a connection from JDeveloper 2.0
    to
    : : : : Oracle
    : : : : : : Lite 8i 4.0.
    : : : : : : I get a connection defined in the connection wizard
    but
    : : I
    : : : : have
    : : : : : : to use the Sun Jdbc Odbc driver and it does not show
    up
    : : in
    : : : : the
    : : : : : : connections dropdown when I go to use it.
    : : : : : : Does anyone know how I can get a usable connection?
    : : : : : : Stan McDaniel
    null

  • JDeveloper 10G (BPEL Designer): how to create db connection to Oracle Lite

    I want to create a JDeveloper database connection to the Oracle Lite database installed with JDeveloper 10G BPEL Designer, but haven't been able to find any info on the subject.
    Can anyone point me to some info or walk me through it?
    Regards

    To connect JDeveloper 10g to an Oracle Lite database, you will need to follow this setup.
    1. Create an ODBC entry for the Oracle Lite database. If you have installed Oracle Lite 10g Mobile Development Kit, you should have a copy of POLITE.ODB pre-installed. Check your ODBC.ini, or run Administrative Tools > Data Sources (ODBC), and follow the polite entry pattern. If you create a new Oracle Lite database, you must create a matching enrty in the ODBC configuration file.
    2. In JDeveloper, create a new connection for your Oracle Lite database.
    The Connection Name should match your entry in ODBC for ease of reading.
    The Connection Type should be Oracle Lite.
    The Username is system.
    The Password is xxx.
    The Deploy Password box is checked.
    The Datasource Name must match the ODBC entry exactly.
    Leave the rest of the fields as is.
    Test your new connection.
    Enjoy.

  • Oracle lite with JDBC crashes

    I am connecting to an Oracle lite database on NT Server 4.0 with
    JDBC and trying to run an simple insert statement. If I try to
    run the same statement again (which should throw an exception
    since the pk already exists) I get an application error - not an
    exception as expected - I get the same thing when executing a
    "delete from.." stmt on an empty table. These same stmts work
    fine in Oracle8i.
    Also, if I use access with ODBC to view the tables access will
    often freeze up on me.
    Any Help would be appreciated.
    Dylan
    null

    You probably mean if you can call a Java Stored Procedure from ADOCE application. PL/SQL packages are not supported in Oracle Lite database. The answer is no. For more information see Developers' Guide for WindowsCE, Chapter 4

  • Additional query... on Oracle Lite

    Dear All,
    I have a few additional queries on the question I posted before
    ADditional queries :
    ==================
    1) What software does lie on the Windows CE platform and how do we install it, because if we install Oracle lite for handheld devices it installs it on the PC?
    2) How can the replication be done with the Polite.odb on windows CE device in the simplest possible way?
    3) If I want to connect to this polite.odb how can i do that from my PC?
    Previous question :
    ==================
    I am working on a prototype between Oracle Lite and Oralce 8i database. I have managed to install oracle lite on PC and also manage the replication between the Oracle database and Oracle Lite database. I can also connect to the Oracle Lite database (It is a ODB file) through SQL plus. But I am having a few problems :
    1) While connecting to Oracle Lite database I get a message
    "Server not available or version too low for this feature" without any oracle error number. The versions are as follows : Oracle Open Client Adapter for ODBC 6.0.5.3.0
    Oracle Lite ORDBMS 4.0.0.2.0
    Oracle8i Enterprise Edition Release 8.1.5.0.0 - Production
    With the Partitioning and Java options
    PL/SQL Release 8.1.5.0.0 - Production
    To connect to Oracle Lite database, your give the userid/password@odbc:<<oracle lite dbname>>
    What can be the possible reasons?
    2) I tried to create a database link between the Oracle Lite database and Oracle database and when I try to fire a select on a table in Oracle Lite database I get an error
    "ORA-06401: NETCMN: invalid driver designator"
    so how dow we create a database link between these 2 databases?
    Thanks in advance
    Please send your mails to [email protected] and/or [email protected]
    Regards
    Sohil
    null

    Hi Aman,
    I was going through Oracle® Database Concepts 11g Release 2, Chapter 12 Logical Storage Structures (link below):
    http://docs.oracle.com/cd/E11882_01/server.112/e25789/logical.htm#i19599
    *Automatic Segment Space Management*
    The ASSM method uses bitmaps to manage space. Bitmaps provide the following advantages:
    •Simplified administration
    ASSM avoids the need to manually determine correct settings for many storage parameters. Only one crucial SQL parameter controls space allocation: PCTFREE. This parameter specifies the percentage of space to be reserved in a block for future updates (see "Percentage of Free Space in Data Blocks").
    •Increased concurrency
    Multiple transactions can search separate lists of free data blocks, thereby reducing contention and waits. For many standard workloads, application performance with ASSM is better than the performance of a well-tuned application that uses MSSM.
    •Dynamic affinity of space to instances in an Oracle Real Application Clusters (Oracle RAC) environment
    ASSM is more efficient and is the default for permanent, locally managed tablespaces.Regards,
    Ankit Rathi

  • Oracle Lite 4.01 cannot work??

    I've installed Oracle lite 4.0.1 with JDK 1.1.8,but it seems cannot work.
    When i connect to my consolidator from my consolitor admin,it get conencted my my oracle 8i but with
    oca -30021 :error preparing/executing sql statement
    pol -8035:no such attribute or method
    Can somebody tell me y??
    Please help.

    You require olite40.jar
    Here is a page on how to connect Jdeveloper to Oracle Lite:
    http://www.rekounas.org/olite/2007/02/01/how-to-setup-jdeveloper-to-connect-oracle-lite/

  • Does anyone have an applet that runs on Windows CE and connects via jdbc to lite DB

    I am trying to get an applet to connect to the Oracle lite DB
    I use
         if (conn == null)
         // Load the JDBC driver
    Class.forName("oracle.lite.poljdbc.POLJDBCDriver");
         conn = DriverManager.getConnection ("jdbc:polite:polite", "SYSTEM", "MANAGER");
         output.appendText ("Connected\n");
    but CE just echos oracle.lite.poljdbc.POLJDBCDriver and does not connect.
    Does anyone have any working samples? I am using Jeode JVM on the CE device

    We have the same problem with that platform, but we get a
    java.security.AccessControlException: access denied (java.lang.RuntimePermission loadLibrary.oljdbc40)
    exception.
    Thank you in advance.

  • 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

  • Oracle Lite - in line quiries

    9iLite 5.0.2.8
    Do in-line queries work?
    example
    select level, a.col_a, b.col_b
    from tab_A, (select col_b
    from tab_c
    where col_c = 1 ) b
    where a.col_D = 1
    start with a.col_a = 0
    connect by b.col_b = prior a.col_a
    We have more complex queries that work on an enterprise verison of the DB, but these sql statements all fail when executed on 9iLite.
    Assuimg their are limitations to the complexity of
    the sql that can run on 9iLite, is there a document
    which hi-lites these limitations and possible work-arounds. I have read the SQL Reference for 9iLite - it documents what syntax is allowed very well.
    I am suspecting that temporary objects in 9iLite sql may not be allowed.
    Thanks in advance for any input.

    The actual syntax is ...
    select level, cls.isActive, cls.application_class_id,
    menu.application_class_id_parent, menu.menu_order,
    menu.menu_id
    from application_class cls,
    ( select *
    from application_menu
    where menu_profile = 1 ) menu
    where menu.application_class_id (+) =
    cls.application_class_id
    and isActive = 1
    start with (cls.application_class_id = 0 or
    menu.application_class_id_parent is null )
    connect by menu.application_class_id_parent = prior
    cls.application_class_id
    and cls.application_class_id != 0
    The error from oLite is ...
    Exception:
    java.sql.SQLException: [POL-5185] can't establish a join with CONNECT BY
         at oracle.lite.poljdbc.LiteEmbPreparedStmt.jniPrepare(Native Method)
         at oracle.lite.poljdbc.LiteEmbPreparedStmt.prepare(Unknown Source)
         at oracle.lite.poljdbc.POLJDBCPreparedStatement.(Unknown Source)
         at oracle.lite.poljdbc.POLJDBCPreparedStatement.(Unknown Source)
         at oracle.lite.poljdbc.OraclePreparedStatement.(Unknown Source)
         at oracle.lite.poljdbc.POLJDBCConnection.prepareStatement(Unknown Source)
         at oracle.lite.web.JupConnection.prepareStatement(JupConnection.java:174)
         at hccadi_on._test._select._jspService(_select.java:70)
         at oracle.jsp.runtime.HttpJsp.service(HttpJsp.java:119)
         at oracle.lite.web.JupServlet.service(JupServlet.java:235)
         at oracle.lite.web.JspRunner.service(JspRunner.java:112)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
         at oracle.lite.web.JupServlet.service(JupServlet.java:235)
         at oracle.lite.web.MimeServletHandler.handle(MimeServletHandler.java:99)
         at oracle.lite.web.JupApplication.service(JupApplication.java:523)
         at oracle.lite.web.JupHandler.handle(JupHandler.java:102)
         at oracle.lite.web.HTTPServer.process(HTTPServer.java:309)
         at oracle.lite.web.HTTPServer.handleRequest(HTTPServer.java:162)
         at oracle.lite.web.JupServer.handle(JupServer.java:308)
         at oracle.lite.web.SocketListener.process(SocketListener.java:178)
         at oracle.lite.web.ClientListener.process(ClientListener.java:64)
         at oracle.lite.web.SocketListener$ReqHandler.run(SocketListener.java:232)
    This sql works on an EE version of the DB. I do agree that
    in-line queries work. I cut this sql up to be just an in-line query and it does work. The problem seems to be around the use of "connect by" with an in-line. I do know that "connect by" works.
    Thanks in advance for any input.

  • Distributing "Oracle Lite Multiuser Service"

    I am trying to use the type 4 java driver in my java application that connects to an Oracle Lite database. I found that in order for this to work, the olsv2040 service must be installed and then the "Oracle Lite Multiuser Service" started in Windows. This works well for my development machine, but now I want to distribute this without having to distribute the entire Mobile Development Kit. Does anyone have any suggestions on what can be done to distribute the necessary files/drivers so that I can install and start this service?
    Thanks.

    I am trying to use the type 4 java driver in my java application that connects to an Oracle Lite database. I found that in order for this to work, the olsv2040 service must be installed and then the "Oracle Lite Multiuser Service" started in Windows. This works well for my development machine, but now I want to distribute this without having to distribute the entire Mobile Development Kit. Does anyone have any suggestions on what can be done to distribute the necessary files/drivers so that I can install and start this service?
    Thanks.

  • Creme 4.0 and Oracle Lite 10G

    Hello Everybody,
    i´ve developed an Oracle Lite app that works fine on my Laptop, but now i want to deploy it on my pocket PC running windows mobile 2003 (XCale processor) with CrEme 4.0 JVM.
    What do i need to do to put it to work?
    Can anyone send me a .lnk file so that i can use as an example??
    Regards,
    Paulo

    48#\Windows\CrEme\bin\CrEme.exe -Of -classpath '\pp_app\simpleapp.jar' SimpleApp
    in the Oracle lite manual you can read:
    When using the CrE-ME 4.0 JVM, use the DriverManager class to connect to an
    Oracle Lite Database.
    For example, use the following:
    politeConnection = DriverManager.getConnection(DSN,UserName,Password);
    To run a sample class ExampleClass, part of ExamplePackage.jar, use the
    following command at the CrE-ME command prompt:
    48#\Windows\CrEme\bin\CrEme.exe -Of -classpath \orace\olitejdbc40.jar;\orace\msync.jar;\ExamplePackage.jar
    ExampleClass

  • Oracle Reports and Oracle Lite

    HI there,
    For Windows 2000,98 - I would like to use
    Oracle Reports which would be connecting to an Oracle Lite database. I cannot get the Oracle Reports to connect to the Oracle Lite database. Any ideas,or suggestions or links to some instructions on connecting Oracle Reports to a Oracle Lite db.
    Thanks in advance for your time,
    Nav

    no replies on this one?

Maybe you are looking for

  • My iphone doesn´t play sound on logitech pure-fi anywhere

    Hi, my iphone 4 recently quit playing music over the logitec Pure-Fi Anywhere Speakers. It did before but it doesn´t anymore. My husbands iphone still cooperates so it can´t be the speakers who are broken. My iphone still plays the sound on it´s own

  • A Qualifying Product Does Not Exist

    So I bought a new computer and now I want to download my CS 6 products. I have the serial number but when I type it in, I'm told that there are no 'qualifying products' on my computer. Now I have to choose one from a list and provide that serial numb

  • Creat icon to display no of entries in ALV container

    HI, I have to display no of records on push button type icon, it should directly display no of entries like'50 hits'.Need not to give any function code,we need not to click push button,it should display like text on button, button should be added in

  • MS 6957 TV Out card

    Hi, I made a mistake of buying this card MS-6957 TV-Out card. I didn't receive a driver CD or disk and I could not find anything about this card or driver. I installed this card on AGP slot. My XP machine didn't find it's presence. I just gone nuts  

  • Restricting the values based on keyfigures.

    Hi All, Good Morning.. I have a query on Bex reporting. I want to calculate transit aging.Just i want to find the difference between the two dates. I have one more field called quantity. I want to calculate the difference of dates only whose quantity