pg_copy_from
(PHP 4 >= 4.2.0, PHP 5)
pg_copy_from --
Insert records into a table from an array
Description
bool
pg_copy_from ( resource connection, string table_name, array rows [, string delimiter [, string null_as]])
pg_copy_from() insert records into a table from
rows. It issues COPY FROM SQL command
internally to insert records.
성공일 경우 TRUE를, 실패일 경우 FALSE를 반환합니다.
See also pg_copy_to().