>>>>> "Oliver" == Oliver Elphick <[EMAIL PROTECTED]> writes:

    Oliver>     [javac] 
/usr3/home/olly/mypackages/pg7.1/postgresql-7.1beta5/src/interfaces
    Oliver> /jdbc/org/postgresql/jdbc1/Statement.java:291: Missing term.
    Oliver>     [javac]           if (result != null) && 
((org.postgresql.ResultSet)result.reallyResultSet())

That's illegal code, try:

if (result != null && ((org.postgresql.ResultSet) result).reallyResultSet())

    Oliver> I can't see anything wrong with the code and assume it
    Oliver> must be something to do with my setup.

>From looking at cvsweb, I would say the code is broken since version 1.5:
http://www.postgresql.org/cgi/cvsweb.cgi/pgsql/src/interfaces/jdbc/org/postgresql/jdbc1/Statement.java.diff?r1=1.4&r2=1.5


        Juergen

-- 
Juergen Kreileder, Blackdown Java-Linux Team
http://www.blackdown.org/java-linux.html
JVM'01: http://www.usenix.org/events/jvm01/


--  
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]

Reply via email to