Re: JDBC problem!

1999-09-29 Thread Dallas C. Hockley
ALPESH KOTHARI wrote: > > Hello Everybody, [snip] > following exception: > java.sql.SQLException: ERROR: parser: parse error at > or near "" > [snip] > try > { > pid1=din.readInt(); >

Re: JDBC problem!

1999-09-29 Thread [EMAIL PROTECTED]
Try converting the int into a string. E.g. >int pid1; > pid1=din.readInt(); String pid1; pid1 = Integer.toString(din.readInt()); I didn't test it, but this seems like the problem. Troy > > Hello Everybody, > > I have written one progr

javah doesn't DTRT

1999-09-29 Thread Solomon Douglas
I'm finding that Blackdown javah version 1.2 is generating C prototypes that are missing the package name. In particular, I have the following in "FitNative.java": package fit; public class FitNative { static native String realName(String username) throws NoSuchUserException

Re: javah doesn't DTRT

1999-09-29 Thread Solomon Douglas
> Try 'javah -jni fit.FitNative' and it will work. By Jove, you're right... In fact, I had tried that before but I hadn't noticed that the resulting filename was "fit_FitNative.h", so I was still looking at the previous FitNative.h that I had generated. Thanks, Solomon -- Solomon <|> [EMAIL

Re: javah doesn't DTRT

1999-09-29 Thread Juergen Kreileder
> Solomon Douglas writes: Solomon> I'm finding that Blackdown javah version 1.2 is generating C Solomon> prototypes that are missing the package name. This not Linux specific; the problem is that you don't use the fully qualified class name: Solomon>package fit; Solomon>

Re: NoClassDefFoundError and RH6.0

1999-09-29 Thread Chris Abbey
At 09:04 9/29/99 -0500, Roll, Greg wrote: >Exception in thread "main" java.lang.NoClassDefFoundError: HelloWorld/class you didn't by any chance type "java HelloWorld.class" did you? cabbey at home dot net <*> http://members.home.net/cabbey I want a binary interface to the brain! Tod

JMenu Rendering Errors

1999-09-29 Thread Jedi Webmaster
I am have a strange problem. Menu's in my application are rendering with a gap between the menubar and the acutal menu. The gap is just blank space which you can click through and is about the height of one JMenuItem. I made no changes to any of my menu's or menubars. In fact it just appeared

Java and Enlightenment

1999-09-29 Thread Peter Graves
The authors of the Enlightenment window manager have some interesting comments today about Java: http://www.enlightenment.org/news.html Their basic point is that "Java under X (AWT) is Broken"; they don't mention which Java implementation they're referring to. I don't think things are all t

Re: Java and Enlightenment

1999-09-29 Thread Michael Emmel
Peter Graves wrote: > The authors of the Enlightenment window manager have some > interesting comments today about Java: > > http://www.enlightenment.org/news.html > > Their basic point is that "Java under X (AWT) is Broken"; they > don't mention which Java implementation they're referring to

Re: Java and Enlightenment

1999-09-29 Thread Weiqi Gao
Peter Graves wrote: > > The authors of the Enlightenment window manager have some > interesting comments today about Java: > > http://www.enlightenment.org/news.html > > Their basic point is that "Java under X (AWT) is Broken"; they > don't mention which Java implementation they're referrin