Re: Error Compiling Java in Oracle 10g

From: Vladimir M. Zakharychev <vladimir.zakharychev_at_gmail.com>
Date: Tue, 1 Jul 2008 23:28:09 -0700 (PDT)
Message-ID: <2a170a3e-7544-4309-b728-aa421a8e431c@u12g2000prd.googlegroups.com>


On Jul 2, 1:15 am, jimmyb <jimmybr..._at_gmail.com> wrote:
> I can compile the following Java code just fine when using the Java
> compiler. But I am getting an error when trying to compile the source
> file in Oracle.
>
> Here is the code:
>
> create or replace and compile java source named host as
> import java.io.* ;
> import java.sql.* ;
>
> public class Host
> {
> public static final void RewriteBaim10Pmc( )
> throws IOException
> {
> try
> {
> BufferedReader inputStream = new BufferedReader(new FileReader("/
> interface/nwps/BAIM/data/if_baim10pmc_pre.dat")) ;
> PrintWriter outputStream = new PrintWriter(new FileWriter("/interface/
> nwps/BAIM/data/if_baim10pmc.dat")) ;
> StringBuilder buffer = new StringBuilder() ;
>
> // more code
> inputStream.Close() ;
> outputStream.Close() ;
>
> }}}
>
> Here is the error message that Oracle is giving me:
>
> Errors for JAVA SOURCE HOST:
>
> LINE/COL ERROR
> --------
> -----------------------------------------------------------------
> 0/0 HOST:7: cannot resolve symbol
> 0/0 symbol : class StringBuilder
> 0/0 location: class Host
> 0/0 StringBuilder buffer = new StringBuilder() ;
> 0/0 ^
> 0/0 2 errors
> 0/0 symbol : class StringBuilder
> 0/0 location: class Host
> 0/0 StringBuilder buffer = new StringBuilder() ;
> 0/0 ^
> 0/0 HOST:7: cannot resolve symbol

java.lang.StringBuilder is new to Java 1.5, Oracle VM is 1.4.

Regards,

   Vladimir M. Zakharychev
   N-Networks, makers of Dynamic PSP(tm)    http://www.dynamicpsp.com Received on Wed Jul 02 2008 - 01:28:09 CDT

Original text of this message