2010/7/2 Babu R <babu_4b...@yahoo.com>
>
> Hello,
>
> Am exploring a way for bulk insert using \COPY with the CSV format data using 
> PHP code. Is there any way to achieve this?
>
> Thanks,
> - Babu
>
hello

look on http://php.net/manual/en/function.pg-put-line.php


<?php
  $conn = pg_pconnect("dbname=foo");
  pg_query($conn, "create table bar (a int4, b char(16), d float8)");
  pg_query($conn, "copy bar from stdin");
  pg_put_line($conn, "3\thello world\t4.5\n");
  pg_put_line($conn, "4\tgoodbye world\t7.11\n");
  pg_put_line($conn, "\\.\n");
  pg_end_copy($conn);
?>

Regards

Pavel Stehule

-- 
Sent via pgsql-general mailing list (pgsql-general@postgresql.org)
To make changes to your subscription:
http://www.postgresql.org/mailpref/pgsql-general

Reply via email to