Re: libpq++: trouble getting "copy table from" to work...

Поиск
Список
Период
Сортировка
От jtv
Тема Re: libpq++: trouble getting "copy table from" to work...
Дата
Msg-id 20020404110805.A11481@xs4all.nl
обсуждение исходный текст
Ответ на libpq++: trouble getting "copy table from" to work...  (Carlos Moreno <moreno@mochima.com>)
Список 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 по дате отправления:

Предыдущее
От: Carlos Moreno
Дата:
Сообщение: libpq++: trouble getting "copy table from" to work...
Следующее
От: Carlos Moreno
Дата:
Сообщение: Re: libpq++: trouble getting "copy table from" to work...