pg_copy_to
Description
array pg_copy_to ( resource connection, string table_name [, string delimiter [, string null_as]] )pg_copy_to() copies a table to an array. It issues COPY TO SQL command internally to retrieve records.
Parameters
connectionPostgreSQL database connection resource.
table_nameName of the table from which to copy the data into
rows.delimiterThe token that separates values for each field in each element of
rows. Default is TAB.null_asHow SQL NULL values are represented in the
rows. Default is \N ("\\N").
