Unix and Linux Discussions Tagged with rows |
|
Thread / Thread Starter |
Last Post |
Replies |
Views |
Forum |
|
|
|
2 |
2,315 |
UNIX for Beginners Questions & Answers |
|
|
|
11 |
2,731 |
UNIX for Beginners Questions & Answers |
|
|
|
4 |
3,938 |
UNIX for Beginners Questions & Answers |
|
|
|
4 |
1,902 |
UNIX for Beginners Questions & Answers |
|
|
|
1 |
3,861 |
Shell Programming and Scripting |
|
|
|
7 |
1,749 |
UNIX for Beginners Questions & Answers |
|
|
|
5 |
1,187 |
UNIX for Beginners Questions & Answers |
|
|
|
2 |
1,931 |
UNIX for Beginners Questions & Answers |
|
|
|
3 |
916 |
UNIX for Beginners Questions & Answers |
|
|
|
3 |
2,062 |
UNIX for Beginners Questions & Answers |
|
|
|
7 |
1,912 |
UNIX for Beginners Questions & Answers |
|
|
|
3 |
4,246 |
Shell Programming and Scripting |
|
|
|
5 |
801 |
UNIX for Beginners Questions & Answers |
|
|
|
1 |
817 |
Shell Programming and Scripting |
|
|
|
6 |
860 |
Shell Programming and Scripting |
|
|
|
9 |
3,692 |
Shell Programming and Scripting |
|
|
|
4 |
839 |
Shell Programming and Scripting |
|
|
|
8 |
1,667 |
Shell Programming and Scripting |
|
|
|
8 |
2,032 |
Shell Programming and Scripting |
|
|
|
6 |
1,168 |
Shell Programming and Scripting |
|
|
|
8 |
2,165 |
Shell Programming and Scripting |
|
|
|
2 |
2,182 |
Shell Programming and Scripting |
|
|
|
3 |
3,793 |
Shell Programming and Scripting |
|
|
|
5 |
14,125 |
Shell Programming and Scripting |
|
|
|
2 |
8,453 |
Shell Programming and Scripting |
|
|
|
6 |
2,419 |
Shell Programming and Scripting |
|
|
|
2 |
2,478 |
UNIX for Dummies Questions & Answers |
|
|
|
8 |
6,098 |
UNIX for Dummies Questions & Answers |
|
|
|
3 |
7,040 |
Shell Programming and Scripting |
|
|
|
5 |
3,358 |
Shell Programming and Scripting |
|
|
|
4 |
3,721 |
Shell Programming and Scripting |
|
|
|
6 |
3,757 |
Shell Programming and Scripting |
|
|
|
24 |
5,859 |
Shell Programming and Scripting |
|
|
|
4 |
5,028 |
Shell Programming and Scripting |
|
|
|
2 |
1,905 |
Shell Programming and Scripting |
|
|
|
6 |
9,993 |
UNIX for Dummies Questions & Answers |
|
|
|
3 |
1,425 |
Shell Programming and Scripting |
|
|
|
5 |
18,384 |
Shell Programming and Scripting |
|
|
|
1 |
1,860 |
Shell Programming and Scripting |
|
|
|
6 |
8,541 |
Shell Programming and Scripting |
PG_COPY_FROM(3) PG_COPY_FROM(3)
pg_copy_from - Insert records into a table from an array
SYNOPSIS
bool pg_copy_from (resource $connection, string $table_name, array $rows, [string $delimiter], [string $null_as])
DESCRIPTION
pg_copy_from(3) inserts records into a table from $rows. It issues a COPY FROM SQL command internally to insert records.
PARAMETERS
o $connection
- PostgreSQL database connection resource.
o $table_name
- Name of the table into which to copy the $rows.
o $rows
- An array of data to be copied into $table_name. Each value in $rows becomes a row in $table_name. Each value in $rows should be
a delimited string of the values to insert into each field. Values should be linefeed terminated.
o $delimiter
- The token that separates values for each field in each element of $rows. Default is TAB.
o $null_as
- How SQL NULL values are represented in the $rows. Default is N ("\N").
RETURN VALUES
Returns TRUE on success or FALSE on failure.
EXAMPLES
Example #1
pg_copy_from(3) example
<?php
$db = pg_connect("dbname=publisher") or die("Could not connect");
$rows = pg_copy_to($db, $table_name);
pg_query($db, "DELETE FROM $table_name");
pg_copy_from($db, $table_name, $rows);
?>
SEE ALSO
pg_copy_to(3).
PHP Documentation Group PG_COPY_FROM(3)