Is it possible to accessOracle Lite with java on a Palm

I have been unable to figure out how to do any java development against OracleLite on a Palm. I am using IMB's VAME/J9 java development environment. It appears that the oracle.lite.poljdbc.POLJDBCDriver class expects to load a library called oljdbc. I see DLLs with this name for a couple of PocketPC platforms, but nothing for Palm.
-- Michael Altmann
-- [email protected]

There is a Compiler class you might be able to use also:
C:\jdk1.3.1_01\docs\api\java\lang\Compiler.html
So perhaps there is no need to create a process to compile code. But I don't know if you can get information about compiler errors.

Similar Messages

  • Is it possible to Integrate dos with Java to create a sample compiler?

    Is it possible to Integrate dos with Java to create a sample compiler, or do I have to write the compiler from scratch? In theory, I would like to have users enter sample code in a java text field, hit a java button that would compile/run the code, by calling a dos command prompt that would run it, and display any error messages back to the java text field. Does anyone know if this is possible? Any help would be greatly appreciated.
    Tflav23

    There is a Compiler class you might be able to use also:
    C:\jdk1.3.1_01\docs\api\java\lang\Compiler.html
    So perhaps there is no need to create a process to compile code. But I don't know if you can get information about compiler errors.

  • Is is possible to work work with Java Threads ind WDJ 04s ?

    Hi experts,
    it is possible to work with treads in wdj 04s? I want to reder the ui in one therad and another one should read the data from serveral webservices! After all webservice cals are finished the data should be shown on the ui.
    Example:
    1. User start process -> User see the UI and a progressbar
    2. In background the wervice get the data
    3. User see the improvement
    How it is possible?
    It ist not possible withe the progress bar ui element because I always lost one second between the calls....

    Basically, you shouldn't use threads in any Application Server, since the environment is not thread-safe.
    I think there's a scheduler API in NW that would fit you best. Create your "task" as a scheduled task, happening once, and query this task using some sort of TimerTrigger.
    Would be a way easier if WDP was a bit more advanced, at least I don't see an easy way for you to do that.
    One way running J2EE 1.4 would be the use of ejbTimeout.
    Hope it helps,
    Daniel
    Edited by: Daniel Ruiz on Dec 3, 2009 2:24 PM

  • Integrate forms with Java

    Hi,
    Is it possible to Integrate forms6i with Java Beans
    my requirement is to show a Java Bean using
    "Bean Area" component in Forms6i client/sever.
    If is possible please provide me with some samples
    Thanks,
    Ali

    Hi all,
    Just something that happened me in the past:
    In the past,using one of the first versions of forms server 6,I don't know how(I couldn't reproduce the config on other machines),but I had a c-s form wich was displaying java beans(the HotLabelWrapper demo).
    I thinck that forms server was also installed on that machine.

  • HT1338 II need to use Java 6 to run a web application because it isnt compatible with java 7 update 7.  is this possible? need to use Java 6 to run a web application because it isnt compatible with java 7 update 7.  is this possible?

    II need to use Java 6 to run a web application because it isnt compatible with java 7 update 7.  is this possible?

    MadMAC0 posted at https://discussions.apple.com/message/20107182?ac_cid=tw123456#20107182 that:
    Apple has posted (10/22/12) the approved solution for restoring the Java 6 plug-in:
    Java for OS X 2012-006: How to re-enable the Apple-provided Java SE 6 applet plug-in and Web Start functionality.

  • Possible to make a dll with java?

    I am completely new to Java. Is it possible to create a Windows style DLL with Java? I am working with one project written in VB.NET which needs to access functions in another project written in Java. Can anybody help me figure out how to do this?

    I'm not sure what you mean by what type of project. It contains numerous data analysis functions which I want to access from a VB.NET program. From what you've written, I must assume that Java cannot be used to create a DLL and my only option is to rewrite it in another language. Thank you for the info.

  • Windows Programming with Java??? Is it possible???

    I have a small request from a client (Windows User) who wants a really simple POP3 email checker. I basically need to achieve the same thing that many email clients do, where they show some sort of symbol in the System tray when there is new email. I, however want to do this without the actual email client. All I want is the checker. This program will not download the email, gather information or anything. It will simply check the POP3 account and let the user know if there is new email.
    1.Can I get an icon to appear in the system tray and have a program that runs in the background, simply checking the POP3 account for new mail???
    2.If it is possible to interact with windows, then how is it done??? If this is too large of a question and you know of some resources that can answer this question for me, that will do.
    3.Is it even possible to have Java programs run in the background without appearing in the task bar??
    4. Am I trying to do something with Java that it just plain cannot do???

    Another really god option is to use the coroutine package from http://www.nevaobject.com/java/index.htm. This allows you invoke COM and Windows API's without having to write the JNI yourself. Its about $695 for a site-wide development license and has no binary distribution costs. A nice, cheap solution to spending lots of hours doing it youself. From the few things I tinkered with, it really does a great job too, but I have not deployed in a real production environment.
    Chuck

  • Is it possible to create java standalone programs with java ME 8

    Hi,
    Comparing java ME to java SE, I have the impression that midlets are similar to applets.
    When working with java SE, I usually make standalone programs.
    Now, I wonder if it is also possible to create also standalone programs for java ME, if the classes are only  using java ME API's.
    I already noticed that netbeans does not allow to build a project that does not contain a midlet, but maybe, it is possible to create a jar file
    using the javac and jar commands. Or is there a specific reason why netbeans does not allow to build a project without midlets?
    The reason for asking is, that I often make small tools in java that ae then called from a linux script. I imagine that this might be useful on the raspberry pi as well.
    Thanks in advance
    Jef

    Hi Jef -
    Comparing java ME to java SE, I have the impression that midlets are similar to applets.
    Sort of - similar life cycle methods - so conceptually, yes.
    Now, I wonder if it is also possible to create also standalone programs for java ME, if the classes are only  using java ME API's.
    In a way, yes. If you build an project, you will notice a JAD file and JAR file in the dist directory of the project.  JAD is the descriptor for a MIDlet - in mobile devices, the JAD
    file is loaded first to determine if the MIDlet has enough privileges to load and run, before the corresponding JAR file is downloaded.
    However, the JAD file can also be included in the Manifest of the JAR and the JAR copied to the embedded device manually and run there.
    I already noticed that netbeans does not allow to build a project that does not contain a midlet, but maybe, it is possible to create a jar file
    using the javac and jar commands. Or is there a specific reason why netbeans does not allow to build a project without midlets?
    You can build JAR files and include them into Java ME Embedded projects, but just like Applets, to use the Application Management System (AMS) on the Raspberry Pi, you must have a MIDlet to run.
    Perhaps you mean that you would like to launch the AMS and load a MIDlet from the command line on the Pi?
    If so, take a look at this section of the Getting Started Guide for the Raspberry Pi.
    Tom

  • Possible to Get Database backup with java program

    Hello
    Is it possible to Get or Create Database Backup on runtime with java program using some sql statements
    How could i do that
    '

    Cross posted and multi-posted.
    Hey jackass why don't you look where I already answered this question.
    http://forum.java.sun.com/thread.jspa?threadID=654902&messageID=3849575

  • XMP with Java. Is it possible?

    Does anyone know if there is the possibility to work on XMP with Java?
    I want to make an application that can read and write "xmp tags" on PDF files, but I want to use Java as programming language...

    "XMP and Java" is very possible. We wrote our own library that can write XMP into pretty much any file type including video, Microsoft office files, flash, etc. We can expand files and insert arbitrary amounts of data into them! For RAW and a couple other formats XMP is attached as a side car.
    More info is available at www.mediabeacon.com
    Thanks!
    Alex

  • Possible to use BlazeDS with GAE Java?

    Is it possible to use BlazeDS with the new GAE Java update? It's working on the local development server, but not on the online one. Apparently, BlazeDS uses some Java classes not in GAE's whitelist yet. Any workarounds? PyAMF on GAE works fine for Python, but I'd like to use BlazeDS and Java. Thanks!

    Yes, it is very much possible. I have done the integration, please check the steps in my post.
    http://sixtyfourarts.blogspot.com/2009/05/gae-integration-with-blazeds-in-eclipse.html

  • Is it possible to use lite sessions with AppLogic's?

    Hi everybody,
    I have one doubt about lite sessions. Is it possible to use lite sessions with AppLogic's?
    If it's possible, which steps do I have to take to use them?
    Thanks a lot,
    Alberto

    The following is the basic procedure to extend one 802.11n AirPort with another:
    AEBSn - Extending a wireless network Setup
    o If practical, place the base stations in near proximity to each other during the setup phase. Once done, move them to their desired locations.
    o Open AirPort Utility and select the base station that will connect to the Internet.
    o Choose Manual Setup from the Base Station menu, or double-click the base station to open the configuration in a separate window. Enter the base station password if necessary.
    o Click AirPort in the toolbar, and then click Wireless.
    o Choose “Create a wireless network” from the Wireless Mode pop-up menu, and then select the “Allow this network to be extended” checkbox.
    o Next, select the base station that will extend this network, and choose Manual Setup from the Base Station menu, or double-click the base station to open its configuration in a separate window. Enter the base station password if necessary.
    o Choose “Extend a wireless network” from the Wireless Mode pop-up menu, and then choose the network you want to extend from the Network Name pop-up menu.
    o Enter the base station network and base station password is necessary.
    o Click Update to update the base station with new network settings.
    (ref: Page 46 of "Designing AirPort Networks Using AirPort Utility.)

  • Using GAP math software with Java 1.4, possible?

    Hello all,
    i work at a tech university and a Prof. has the following question:
    Some of his students want to use a free math software package called GAP with their diploma work. Question is: Can they use the GAP package with Java 1.4 Math Class and how does one interact between using GAP and Java 1.4?
    If anyone can help, i would be much obliged.
    Thank you.
    Raymund

    There does not seem to be any such capability, based on the articles in the GAP forum. You might want to look at this article which mentions a means of using Maple and GAP from Java programs.
    http://www.gap-system.org/~gap/Forum/Solomon.1/Andrew.1/JavaMath.1/1.html
    Chuck

  • Is ist possible to define heap size when start with java -jar

    Hi,
    I start my application as executable jar. How can I set the heapsize when double clicking myapp.jar ? With java -Xmx512m -jar myapp.jar it should go. But can I specify this when double clicking the myapp.jar ?
    Thanks
    Oli

    For all jars it is not acceptable I think.... the value as entry in the manifest.mf could be nice... :(

  • Is it possible to play .rm and .wma file with java?

    Hello Friends,
    Please tell me,
    how to play .rm and .wma file with java?
    Thanks,
    Harsh Modha

    As far as I know, you can not play those files.
    Here you have the complete list of supported formats. Hope this helps.
    http://java.sun.com/products/java-media/jmf/2.1.1/formats.html
    Maybe you should try to convert from wma or rm to a supported format before attempting to play it.

Maybe you are looking for

  • Could not complete the Refine Edge command because of a program error.

    This is kind of me being a smart ***- but, I've found an Error with the new refine edge. And I've solved the problem: If you check "remember settings" and refine a selection with output set to "New Layer with Layer Mask" and then try and refine anoth

  • List of Vendors:

    Dear Gurus We are shifted the plant from one location to another location The plant address has been changed. Now I want to send the New address to vendors (Only used by my plant) Because so many vendors are created in my company code( So many plants

  • I Cal and conflicting apt notification

    I use basic I Cal and make a lot of reoccurring apt. I cal is great that it gives the dates of all apt, but it does not notify if there is a conflicting apt. Is here a setting I am missing or do I need to upgrade to another software, or is this just

  • Best reason for a built-in downloader in Bridge

    I just heard the best reason to have a photo downloader built-in to Bridge. I already own Downloader Pro from Breeze Systems which is a bit complicated to set up, but has great functionality. But, because it's not integrated into Bridge, my workflow

  • Amazon lightroom 4 download not working.

    My Amazon lightroom 4 Purchased download is not working. I have a Mac Pro XO S 10.5 so it says it supports it but i wont install. what should i do?