Re: libpq++: trouble getting "copy table from" to work... - Mailing list pgsql-interfaces

From jtv
Subject Re: libpq++: trouble getting "copy table from" to work...
Date
Msg-id 20020404110805.A11481@xs4all.nl
Whole thread Raw
In response to libpq++: trouble getting "copy table from" to work...  (Carlos Moreno <moreno@mochima.com>)
List pgsql-interfaces
On Thu, Apr 04, 2002 at 01:57:33AM -0500, Carlos Moreno wrote:
> 
> PgDatabase db(" ..... ");
> db.Exec ("copy deleteme from stdin\n1\tName1\n2\tName2");
There are separate calls to actually feed the data to the backend through
stdin.  Unfortunately, these calls are in libpq, and libpq++ does not
expose them so you can't access them without going "underneath" and
coding to the C API.

#include <stdplug>

...

May I suggest checking out libpqxx, an alternative to libpq++ that does
expose 'copy from stdin'?  It's at
 http://members.ams.chello.nl/j.vermeulen31/proj-libpqxx.html

The stuff you're looking for is in the TableWriter class.


Jeroen



pgsql-interfaces by date:

Previous
From: Carlos Moreno
Date:
Subject: libpq++: trouble getting "copy table from" to work...
Next
From: Carlos Moreno
Date:
Subject: Re: libpq++: trouble getting "copy table from" to work...