Lines Matching refs:pgsqlCopyFromArray
2 PDO PgSQL pgsqlCopyFromArray and pgsqlCopyFromFile
41 echo "Testing pgsqlCopyFromArray() with default parameters\n";
43 var_dump($db->pgsqlCopyFromArray('test',$tableRows));
51 echo "Testing pgsqlCopyFromArray() with different field separator and not null indicator\n";
53 var_dump($db->pgsqlCopyFromArray('test',$tableRowsWithDifferentNullValues,";","NULL"));
60 echo "Testing pgsqlCopyFromArray() with only selected fields\n";
62 var_dump($db->pgsqlCopyFromArray('test',$tableRowsWithDifferentNullValuesAndSelectedFields,";","NUL…
69 echo "Testing pgsqlCopyFromArray() with error\n";
72 …var_dump($db->pgsqlCopyFromArray('test_error',$tableRowsWithDifferentNullValuesAndSelectedFields,"…
131 Testing pgsqlCopyFromArray() with default parameters
175 Testing pgsqlCopyFromArray() with different field separator and not null indicator
219 Testing pgsqlCopyFromArray() with only selected fields
263 Testing pgsqlCopyFromArray() with error