php8.5
Home/ Manual/ pgsql / functions/ pg_put_copy_data

pg_put_copy_data

PHP function Edit on GitHub ✎

(PHP 8 >= 8.4.0)

Send data to the server during a COPY operation

Description

pg_put_copy_data(PgSql\Connection $connection, string $cmd): int

Sends data to the server during a COPY FROM STDIN operation. A COPY command must have been issued via pg_query() before calling this function.

Parameters

connection

Connection

cmd

The data to send to the server. A final newline is automatically added if not present. The data must be formatted according to the COPY command's format.

Return Values

Returns 1 on success, 0 if the data could not be queued (only in non-blocking mode), or -1 on error.

See Also

Source: reference/pgsql/functions/pg-put-copy-data.xml · from the official PHP manual (php/doc-en)