Re: swing on suse linux on ldk1.2

2000-01-20 Thread Peter Mount
On Thu, 20 Jan 2000 [EMAIL PROTECTED] wrote: > does any one know why swing is not working on a suse linux box with > jdk1.2? > generally what do i need to do to run swing with jdk1.2 What version of SuSE are you using? When I tried the most recent version from blackdown on my 6.3 box last week,

Re: Jar file with JDBC

1999-12-29 Thread Peter Mount
On Wed, 29 Dec 1999, ALPESH KOTHARI wrote: > > Hi, > > When I added 'System.out.printStackTrace()' it told > while compilation > Method printStackTrace() not found in class > java.io.PrintStream. > > System.out.printStackTrace(); > > I have imported java.io.*;

RE: Jar file with JDBC

1999-12-28 Thread Peter Mount
On Tue, 28 Dec 1999, Edson Carlos Ericksson Richter wrote: > Try putting the postgresql.jar file in the /jre/lib/ext/ directory... > > Is possible to put the postgresql.jar file into another jar file (my > app.jar) and use them in my app? Not that I know of, other than extracting the files, but

Re: Jar file with JDBC

1999-12-28 Thread Peter Mount
On Mon, 27 Dec 1999, ALPESH KOTHARI wrote: ok, can you run it again for me, but add the following: > String crt="create table xyz(sadd int4,tadd int4,pid > int4,filen text,diff int2)"; > st.executeUpdate(crt); > > //While executing this statement it gives nullpointer > e

Re: Jar file with JDBC

1999-12-27 Thread Peter Mount
On Mon, 27 Dec 1999, ALPESH KOTHARI wrote: > Hello all, > > I have written an application using Java2. It works > fine with JDBC interface. I prepared a jar file of all > the class file as well as 'postgresql.jar'.(I am using > postgresql-6.5 as db). > > At this time it gives null pointer excep

Re: Printing with 1.2

1999-11-16 Thread Peter Mount
On Thu, 11 Nov 1999, Greg Tomalesky wrote: > Hi Gang: > > Does anyone know where I can get some examples of printing under JDK > 1.2? The trick is to use the java.awt.PrintJob class. Take a look at my retepPDF library. Although it's not directly printing, it extends PrintJob, so the exampl

Re: JDBC newbie question

1999-11-07 Thread Peter Mount
> Do you know of any independent comparisons of the JDBC drivers for PostgresSQL > and mySQL? I just got back from the Colorado Software Summit and feedback > there was mixed. Not that I'm aware of, but I would be interested in reading them if there are any. What type of feedback did you ge

Re: JDBC newbie question

1999-10-26 Thread Peter Mount
On Mon, 25 Oct 1999, John N. Alegre wrote: > Has anyone else had this experience. I have been reluctant to move to > PostgrSQL for reasons of complexity and speed. Although I don't touch applets anymore, the problems with placing either all of the classes into a single jar file, or extracting t

Re: JDBC problem!

1999-10-04 Thread Peter Mount
On Wed, 29 Sep 1999, [EMAIL PROTECTED] wrote: > 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 prob

Mapping Classes

1999-09-14 Thread Peter Mount
As I've had several requests from the Java-Linux list, mainly from a reply I made to a query on the list last week, I've placed an early release of my mapping class library onto the web. Now, this is an early version. It works, but I've yet to document it. It's available at: http://www.retep.or

Re: download postgresql 6.5.1

1999-09-13 Thread Peter Mount
On Sun, 12 Sep 1999 [EMAIL PROTECTED] wrote: > Hi Peter, > Thanks for your reply. I have another question. I have postgresql, > postgresql-clients, postgresql-data, postgresql-devel of release 6.3.2-10 > with my redhat linux 5.2. I uninstalled them and installed postgresql, > postgresql-devel

Re: map display

1999-09-09 Thread Peter Mount
On Thu, 9 Sep 1999, R MUTHUSWAMY wrote: > > hi > i am doing a project using maps in java. so is there any support > for maps displays in java. And where i can get some materials about maps > usage in java. I have some unpublished classes that handle layered vector based maps. It's Astrono

Re: (no subject)

1999-09-06 Thread Peter Mount
On Mon, 06 Sep 1999, [EMAIL PROTECTED] wrote: > Hi, > I installed Postgresql 6.5.1 on linux (RedHat 5.2 on Intel 686) and I can > download jdbc driver and odbc driver for 6.5.1. But I cannot find jdbc-odbc > bridge driver for postgresql 6.5.1. In order to build Jdk1.2.2 on linux, > jdbc-odbc br

Re: where get bunzip2?

1999-08-31 Thread Peter Mount
On Tue, 31 Aug 1999, Roland Silver wrote: > To use I need to download and bunzip it with bunzip2. > > I don't think there's a bunzip2 with Red Hat Linux 6.0 -- which I > use. Where can I get it, for Linux/i386? I can't remember the rpm name offhand, as I use RH6.0 at work, but it is in there.

Re: idltojava

1999-08-28 Thread Peter Mount
On Sat, 28 Aug 1999, Matthias Sprünglin wrote: > Hi everybody > > Is there a port of the idltojava-compiler for Linux. Where do I find it? I haven't seen one yet (I have to resort to using the Win32 version) :-( Peter -- Peter T Mount [EMAIL PROTECTED]Tel +44 (0) 7990 8984

Re: X-server

1999-08-28 Thread Peter Mount
On Wed, 25 Aug 1999, Hanno Saks wrote: > Hi! > > Is out there available (or is even possible to do) any applets which can act > in framed HTML page as Xserver client There is a neat utility called VNC which allows you to access X or even Win32 servers using either a custom viewer or a Web Brows

Re: Failing to Prepare Postgres.jar file

1999-08-16 Thread Peter Mount
On Fri, 30 Jul 1999, ALPESH KOTHARI wrote: Sorry for the delay in replying, but my Inbox is a tad full... > I am using Postgresql-6.4.3-2. I want to use JDBC. so as a first point > i need postgres.jar file. > when i execute the commands as follows it gives the error as follows: > > #cd /usr/sr