--- CG <cgg007@xxxxxxxxx> wrote: > > There's no other way to load data into the toolkit! > (Can you /feel/ the > insanity?) > > Does this give you any more insight into an > alternate method of getting this > thing done? > Write a completely seperate process to process your FDF stuff. Have this new process expose a communicastions channel (message queues, sockets, shared memory, etc...). Write your PostgreSQL 'C' function to use this channel. You'll get almost complete seperation and the ability to debug each piece independant of the other. You can write stubs for both ends: a fake server for testing the PostgreSQL part, and a fake "client" for testing the daemon that you wrote. Dennis Jenkins ---------------------------(end of broadcast)--------------------------- TIP 9: In versions below 8.0, the planner will ignore your desire to choose an index scan if your joining column's datatypes do not match