Query: pg_end_copy
OS: php
Section: 3
Format: Original Unix Latex Style Formatted with HTML and a Horizontal Scroll Bar
PG_END_COPY(3) PG_END_COPY(3) pg_end_copy - Sync with PostgreSQL backendSYNOPSISbool pg_end_copy ([resource $connection])DESCRIPTIONpg_end_copy(3) syncs the PostgreSQL frontend (usually a web server process) with the PostgreSQL server after doing a copy operation per- formed by pg_put_line(3). pg_end_copy(3) must be issued, otherwise the PostgreSQL server may get out of sync with the frontend and will report an error.PARAMETERSo $connection - PostgreSQL database connection resource. When $connection is not present, the default connection is used. The default connection is the last connection made by pg_connect(3) or pg_pconnect(3).RETURN VALUESReturns TRUE on success or FALSE on failure.EXAMPLESExample #1 pg_end_copy(3) example <?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 hello world 4.5 "); pg_put_line($conn, "4 goodbye world 7.11 "); pg_put_line($conn, "\. "); pg_end_copy($conn); ?>SEE ALSOpg_put_line(3). PHP Documentation Group PG_END_COPY(3)
Related Man Pages |
---|
pg_client_encoding(3) - php |
pg_fetch_all(3) - php |
pg_lo_create(3) - php |
pg_lo_export(3) - php |
pg_query(3) - php |
Similar Topics in the Unix Linux Community |
---|
php-residence 0.7.2 (Default branch) |
PostGIS 1.3.5 (Stable branch) |
Different OS Kernel Update Frequency |
Need help to replace a perl pattern matching |
Mysql++ |