Re: TR: interface PERL and return results
| От | Nigel J. Andrews |
|---|---|
| Тема | Re: TR: interface PERL and return results |
| Дата | |
| Msg-id | Pine.LNX.4.21.0210071832140.3248-100000@ponder.fairway2k.co.uk обсуждение исходный текст |
| Ответ на | TR: interface PERL and return results ("victor3.lopes@voila.fr" <victor3.lopes@voila.fr>) |
| Список | pgsql-interfaces |
Bonjour,
On Mon, 7 Oct 2002, [utf-8] victor3.lopes@voila.fr wrote:
> Hello no one has a solution for my problem :-) ?
>
>
> ---------- Entête Initiale -----------
>
> De : "victor3.lopes@voila.fr" <victor3.lopes@voila.fr>
> A : "pgsql-interfaces" <pgsql-interfaces@postgresql.org>
> Copie :
> Date : Sat, 5 Oct 2002 23:31:40 +0200
> Objet : interface PERL and return results
>
> Hello,
> I use Perl Pg interface to join my postgresql database.
>
> I wan't send the below query in perl :
>
> $res = $db->exec(' create table temp (....); \copy temp from result.res');
The \copy is a psql command. You need to use just the word 'copy' without the
leading '\'.
Using:
COPY temp FROM /path/to/result.res
will try and read result.res from a file on the server system. To load a file
on your client system you should use COPY temp FROM STDIN and read the Pg
manpage.
Documentation:
http://developer.postgresql.org/docs/postgres/sql-copy.html
and
man Pg
search for 'copy' in the second of these to get a good starting point on the
subject.
--
Nigel J. Andrews
Director
---
Logictree Systems Limited
Computer Consultants
В списке pgsql-interfaces по дате отправления: