Re: Bulk updates/inserts

Поиск
Список
Период
Сортировка
От Christoph Haller
Тема Re: Bulk updates/inserts
Дата
Msg-id 200404141251.OAA21416@rodos
обсуждение исходный текст
Ответ на Bulk updates/inserts  (Shelby Cain <alyandon@yahoo.com>)
Ответы Re: Bulk updates/inserts
Список pgsql-interfaces
> 
> Is it currently possible to perform bulk
> updates/inserts via host arrays using ecpg?  If so,
> would someone mind showing me an example of the proper
> syntax as I can't seem to come up with something that
> the ecpg preprocessor likes.
> 
> On a side note, if ecpg doesn't support bulk
> inserts/updates are there any plans for adding such
> support?  Is there anyway programmatically to get
> close to the same speed for inserts/updates as say the
> COPY command?
> 
> Regards,
> 
> Shelby Cain
> 
> __________________________________

Doing bulk inserts via host arrays is not possible AFAICT. 
I posted a similar request in February 2003. 
See 
http://archives.postgresql.org/pgsql-interfaces/2003-02/msg00091.php 

BTW, I don't see how a bulk update could be done. 

There is a way to use COPY programmatically via libpq: 

something like ...

PQexec("COPY xxx FROM stdin");
for (...)
{   sprintf(buf, "%d\t%d\t...\n",           values[0], values[1], ... values[n]);   PQputline(conn, buf);
}
PQputline(conn, "\\.\n");
PQendcopy(conn);

Regards, Christoph 



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

Предыдущее
От: Kris Jurka
Дата:
Сообщение: Re: Compiler 7.4 with--java Error on Redhad AS 2.4.21
Следующее
От: Shelby Cain
Дата:
Сообщение: Re: Bulk updates/inserts