Lines Matching refs:pgsqlCopyFromArray
2 PDO PgSQL pgsqlCopyFromArray and pgsqlCopyFromFile
40 echo "Testing pgsqlCopyFromArray() with default parameters\n";
42 var_dump($db->pgsqlCopyFromArray('test_copy_from',$tableRows));
50 echo "Testing pgsqlCopyFromArray() with different field separator and not null indicator\n";
52 var_dump($db->pgsqlCopyFromArray('test_copy_from',$tableRowsWithDifferentNullValues,";","NULL"));
59 echo "Testing pgsqlCopyFromArray() with only selected fields\n";
61 var_dump($db->pgsqlCopyFromArray('test_copy_from',$tableRowsWithDifferentNullValuesAndSelectedField…
68 echo "Testing pgsqlCopyFromArray() with error\n";
71 …var_dump($db->pgsqlCopyFromArray('test_error',$tableRowsWithDifferentNullValuesAndSelectedFields,"…
136 Testing pgsqlCopyFromArray() with default parameters
180 Testing pgsqlCopyFromArray() with different field separator and not null indicator
224 Testing pgsqlCopyFromArray() with only selected fields
268 Testing pgsqlCopyFromArray() with error