pg_put_copy_end

Signal the completion of a COPY operation to the server

説明

int pg_put_copy_end(PgSql\Connection $connection, stringnull $error = null)

Sends an end-of-data indication to the server during a COPY FROM STDIN operation.

パラメータ

connection
PgSql\Connection クラスのインスタンス。
error
If not null, the COPY operation is forced to fail with the given error message.

戻り値

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

参考

  • pg_put_copy_data
  • pg_query