RE: [INTERFACES] JDBC: Using Serialize.create()

From: Peter Mount <petermount(at)it(dot)maidstone(dot)gov(dot)uk>
To: "'steinbeck(at)ice(dot)mpg(dot)de'" <steinbeck(at)ice(dot)mpg(dot)de>, pgsql-interfaces <pgsql-interfaces(at)postgresql(dot)org>
Subject: RE: [INTERFACES] JDBC: Using Serialize.create()
Date: 1999-09-06 13:26:27
Message-ID: 1B3D5E532D18D311861A00600865478C25E56C@exchange1.nt.maidstone.gov.uk
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-interfaces

Could you email me a copy of Atom, so I can see what's being Serialised.

Peter

--
Peter Mount
Enterprise Support
Maidstone Borough Council
Any views stated are my own, and not those of Maidstone Borough Council.

-----Original Message-----
From: Christoph Steinbeck [mailto:steinbeck(at)ice(dot)mpg(dot)de]
Sent: 06 September 1999 13:54
To: pgsql-interfaces
Subject: [INTERFACES] JDBC: Using Serialize.create()

Hi,

has anyone been successfull in using public static void
create(Connection con, Object o) in Class Serialize to create a
postgresql table.

I have a simple class Atom that has an int and a float, that's it.
When I do a

Atom a = new Atom();
postgresql.Connection pc = (postgresql.Connection)db;
System.out.println(pc);
System.out.println(a);
Serialize.create(pc, a);

then I get

postgresql(dot)jdbc2(dot)Connection(at)25ab41

nmrshiftdb(dot)Atom(at)e3e60

java.lang.NullPointerException

The Connection db is valid since I can create tables using regular SQL
statements.
Also, as one can see, my instance of Atom is not null.

Any hints?

TIA,

Chris

--
Dr. Christoph Steinbeck (http://www.ice.mpg.de/~stein)
MPI of Chemical Ecology, Tatzendpromenade 1a, 07745 Jena, Germany
Tel: +49(0)3641 643644 - Mobile: +49(0)177 8236510 - Fax: +49(0)3641
643665

What is man but that lofty spirit - that sense of enterprise.
... Kirk, "I, Mudd," stardate 4513.3..

************

Browse pgsql-interfaces by date

  From Date Subject
Next Message Jelle Ruttenberg 1999-09-06 13:39:58 Is there a psqlODBC for the Mac?
Previous Message Christoph Steinbeck 1999-09-06 12:54:15 JDBC: Using Serialize.create()