Oracle FAQ Your Portal to the Oracle Knowledge Grid
HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US
 

Home -> Community -> Mailing Lists -> Oracle-L -> Re: loadjava error

Re: loadjava error

From: Stuart Lindenmayer <stuart.lindenmayer_at_gmail.com>
Date: Wed, 6 Sep 2006 22:20:46 +1000
Message-ID: <f5c9a7e80609060520g7a87cb6en737a59bdf8599188@mail.gmail.com>


Hi Vivian,
I'm no Oracle Java expert, but just wondering why you're not loading the Java source instead of the compiled class? By loading the source you've got the source code in case something needs changing. Using 9i I can successfully load the source and implicitly compile the class using: loadjava -user test1/test1 -resolve Hello.java

Also to use the "-oci8" flag I believe you require a functioning TNS connection (eg tnsnames.ora entry or similar) and specify @<database_name> in the user string:
loadjava -user test1/test1_at_mydb -oci8 -resolve Hello.java

Cheers,

Stuart.

On 9/6/06, Vivian Li <vli_at_ppoone.com> wrote:
>
>
> Hi,
>
> I have a very simple java program that I would like to load into Oracle.
>
> *$ more Hello.java*
> public class Hello
> { public static String world ()
> { return "Hello world.";
> }
> }
>
> The above java code complies successfully by itself. But, when I do
> loadjava, I get below errors:
> *$ loadjava -user userID/password -oci8 -resolve Hello.class*
> errors : class Hello
> ORA-29545: badly formed class:
>
> The following operations failed
> class Hello: resolution
> exiting : Failures occurred during processing
>
> Any ideas why this is happening?
>
> Thanks,
> Vivian
>

--
http://www.freelists.org/webpage/oracle-l
Received on Wed Sep 06 2006 - 07:20:46 CDT

Original text of this message

HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US