Lines Matching refs:pgsqlCopyFromArray
2 PDO PgSQL pgsqlCopyFromArray and pgsqlCopyFromFile
39 echo "Testing pgsqlCopyFromArray() with default parameters\n";
41 var_dump($db->pgsqlCopyFromArray('test',$tableRows));
49 echo "Testing pgsqlCopyFromArray() with different field separator and not null indicator\n";
51 var_dump($db->pgsqlCopyFromArray('test',$tableRowsWithDifferentNullValues,";","NULL"));
58 echo "Testing pgsqlCopyFromArray() with only selected fields\n";
60 var_dump($db->pgsqlCopyFromArray('test',$tableRowsWithDifferentNullValuesAndSelectedFields,";","NUL…
67 echo "Testing pgsqlCopyFromArray() with error\n";
70 …var_dump($db->pgsqlCopyFromArray('test_error',$tableRowsWithDifferentNullValuesAndSelectedFields,"…
129 Testing pgsqlCopyFromArray() with default parameters
173 Testing pgsqlCopyFromArray() with different field separator and not null indicator
217 Testing pgsqlCopyFromArray() with only selected fields
261 Testing pgsqlCopyFromArray() with error