array ( 0 => 'index.php', 1 => 'PHP Manual', ), 'head' => array ( 0 => 'UTF-8', 1 => 'pt_BR', ), 'this' => array ( 0 => 'function.pg-put-copy-data.php', 1 => 'pg_put_copy_data', 2 => 'Send data to the server during a COPY operation', ), 'up' => array ( 0 => 'ref.pgsql.php', 1 => 'Funções PostgreSQL', ), 'prev' => array ( 0 => 'function.pg-prepare.php', 1 => 'pg_prepare', ), 'next' => array ( 0 => 'function.pg-put-copy-end.php', 1 => 'pg_put_copy_end', ), 'alternatives' => array ( ), 'source' => array ( 'lang' => 'en', 'path' => 'reference/pgsql/functions/pg-put-copy-data.xml', ), 'history' => array ( ), ); $setup["toc"] = $TOC; $setup["toc_deprecated"] = $TOC_DEPRECATED; $setup["parents"] = $PARENTS; manual_setup($setup); contributors($setup); ?>

pg_put_copy_data

(PHP 8 >= 8.4.0)

pg_put_copy_dataSend data to the server during a COPY operation

Descrição

function 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.

Parâmetros

connection
Uma instância de PgSql\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.

Valor Retornado

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

Veja Também