JDBC: Using Serialize.create()

Поиск
Список
Период
Сортировка
От Christoph Steinbeck
Тема JDBC: Using Serialize.create()
Дата
Msg-id 37D3B977.60E36B4D@ice.mpg.de
обсуждение исходный текст
Список pgsql-interfaces
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.jdbc2.Connection@25ab41

nmrshiftdb.Atom@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..


В списке pgsql-interfaces по дате отправления:

Предыдущее
От: Peter Mount
Дата:
Сообщение: RE: [INTERFACES] JDBC: What is 'String type' in Serialize()-const ructor?
Следующее
От: Peter Mount
Дата:
Сообщение: RE: [INTERFACES] JDBC: Using Serialize.create()