Re: JDBC-ODBC Bridge

1998-08-28 Thread Chris Kakris
On Fri, 28 Aug 1998 [EMAIL PROTECTED] wrote: > Does anyone know of a JDBC-ODBC Bridge for Linux? I'm running Red Hat > 4.something Linux, kernel version 2.0.27. Well I'm currently using postgresql and there's a driver here... http://rufus.w3.org/linux/RPM/postgresql-jdbc.html I previo

JDBC-ODBC Bridge

1998-08-28 Thread BobCurtiss
Does anyone know of a JDBC-ODBC Bridge for Linux? I'm running Red Hat 4.something Linux, kernel version 2.0.27. Thanks, bc

Announcing JDK 1.1.6 V4a for MkLinux, Linux PMac, Linux PowerPC

1998-08-28 Thread Kevin B. Hendricks
Hi, Your Linux PowerPC JDK Porting Team is pleased to announce JDK 1.1.6 Version 4a for Linux on PowerPC. This release is available from our website and should soon be available on our mirrors: http://business.tyler.wm.edu/mklinux/index.html or for slower connections that don't like java on w

RE: Compilation hardware

1998-08-28 Thread Stefaan A Eeckels
On 28-Aug-98 Jerry Treweek wrote: > > There is a bewildering plethora of choice out there and I would be > interested in seeing what opinions and experiences the java-linux > community had to offer in respect of selecting components for a > compilation machine, specifically, > > CPU > Ch

Re: An information please!!

1998-08-28 Thread Stefano Canepa
At 11:04 +0200 28-08-1998, Pierre wrote: >GoodMorning, >I'm a student of Computer Science of the Rome's University. >I need help to know the iter to receive the source of the Java virtual >machine of the SUN. >Well, I know that the University and the Researcher can receive with a >contract with th

Compilation hardware

1998-08-28 Thread Jerry Treweek
Dear all, I've spend the last week or so trawling for info on CPU's, motherboards, chip sets et al, with the intention of upgrading my main linux machine. This machine (currently a now aging P90) sits in a cupboard and acts as a file server and compilation (Java and C) machine - i.e. a developers

Linux/Java Studio woes

1998-08-28 Thread Matt Herres
I'm new to this list. If this subject has already been discussed please excuse this. I have installed Sun's Java Studio per instructions on the blackdown site all works fine UNTIL I attempt to Generate anything... It works a bit and then gives me this message: "Generation of the ... fa

Re: What's up with this?

1998-08-28 Thread Michael Sinz
On Fri, 28 Aug 1998 15:13:20 +, Steve Cohen wrote: >I realize this may not be the appropriate place for this question but why can't >I do this? > >//file a: > >import java.awt.*; >public class a { >void paint (Graphics g) { >... >} > >} > >//file b: >import java.awt.*; >import

Re: What's up with this?

1998-08-28 Thread Robert Ritchy
Did you create a new instance of "a" before calling the paint method? I noticed that your paint() method wasn't declared as a static one but that seems to be how you're trying to use it. Just a guess Steve Cohen wrote: > I realize this may not be the appropriate place for this question but why

Re: What's up with this?

1998-08-28 Thread Kenny Freeman
well, it would work if you extended a component that already implemented paint - you can't just call paint without making your class an extension of one that has the paint method of the graphics object. Depending on what you are doing, try something like: Class a extends canvas { blah; bla

What's up with this?

1998-08-28 Thread Steve Cohen
I realize this may not be the appropriate place for this question but why can't I do this? //file a: import java.awt.*; public class a { void paint (Graphics g) { ... } } //file b: import java.awt.*; import a; public class b { public a A; ... void paint (Graphics g

Re: full screen frames

1998-08-28 Thread Kalimero
Håkan Thörngren wrote: > > "Jason" == Jason Gilbert <[EMAIL PROTECTED]> writes: > > Jason> Håkan Thörngren wrote: > >> How can I get full screen frames? > > Jason> I'm making the assumption that you turned of the frame > Jason> decorations in the window manager (this may not be the case).

Re: problems with finalize()

1998-08-28 Thread marcel
[EMAIL PROTECTED] wrote ([EMAIL PROTECTED]) > Hello, > > I have a problem with jdk1.1.6v3a/glibc2. The problem is with > the finalize() methods which does not get invoked in my code. > Jdk1.1.5v7/glibc2 works fine (ie. the finalize() method is called). > Anyone got any idea why? > (I tried to cre

Re: full screen frames

1998-08-28 Thread Kalimero
Håkan Thörngren wrote: > > "Jason" == Jason Gilbert <[EMAIL PROTECTED]> writes: > > Jason> Håkan Thörngren wrote: > >> How can I get full screen frames? > > Jason> I'm making the assumption that you turned of the frame > Jason> decorations in the window manager (this may not be the case).

Re: full screen frames

1998-08-28 Thread Kalimero
Håkan Thörngren wrote: > > "Jason" == Jason Gilbert <[EMAIL PROTECTED]> writes: > > Jason> Håkan Thörngren wrote: > >> How can I get full screen frames? > > Jason> I'm making the assumption that you turned of the frame > Jason> decorations in the window manager (this may not be the case).

Re: final vs const

1998-08-28 Thread Gao Lei
Thanks all, I have gotten an answer of this problem, Sorry for this non java question again. Thanks. The answer as following, class test { private: int _a[3]; public: const int (&a)[3]; public: test(const int x[3]); ~test(); }; test::test(const int x[]) :

An information please!!

1998-08-28 Thread Pierre
GoodMorning, I'm a student of Computer Science of the Rome's University. I need help to know the iter to receive the source of the Java virtual machine of the SUN. Well, I know that the University and the Researcher can receive with a contract with the Sun the source. I must study the Java VM to p

Re: full screen frames

1998-08-28 Thread Håkan Thörngren
> "Jason" == Jason Gilbert <[EMAIL PROTECTED]> writes: Jason> Håkan Thörngren wrote: >> How can I get full screen frames? Jason> I'm making the assumption that you turned of the frame Jason> decorations in the window manager (this may not be the case). Jason> If you are using java.awt.Frame