Searched refs:pg_null_as (Results 1 – 2 of 2) sorted by relevance
/PHP-8.4/ext/pdo_pgsql/ |
H A D | pgsql_driver.c | 616 char *table_name, *pg_delim = NULL, *pg_null_as = NULL, *pg_fields = NULL; in pgsqlCopyFromArray_internal() local 625 &pg_delim, &pg_delim_len, &pg_null_as, &pg_null_as_len, &pg_fields, &pg_fields_len) == FAILURE) { in pgsqlCopyFromArray_internal() 642 …AS E'%s'", table_name, (pg_delim_len ? *pg_delim : '\t'), (pg_null_as_len ? pg_null_as : "\\\\N")); in pgsqlCopyFromArray_internal() 732 char *table_name, *filename, *pg_delim = NULL, *pg_null_as = NULL, *pg_fields = NULL; in pgsqlCopyFromFile_internal() local 741 &pg_delim, &pg_delim_len, &pg_null_as, &pg_null_as_len, &pg_fields, &pg_fields_len) == FAILURE) { in pgsqlCopyFromFile_internal() 834 char *table_name, *pg_delim = NULL, *pg_null_as = NULL, *pg_fields = NULL, *filename = NULL; in pgsqlCopyToFile_internal() local 845 … &pg_delim, &pg_delim_len, &pg_null_as, &pg_null_as_len, &pg_fields, &pg_fields_len) == FAILURE) { in pgsqlCopyToFile_internal() 870 …AS E'%s'", table_name, (pg_delim_len ? *pg_delim : '\t'), (pg_null_as_len ? pg_null_as : "\\\\N")); in pgsqlCopyToFile_internal() 934 char *table_name, *pg_delim = NULL, *pg_null_as = NULL, *pg_fields = NULL; in pgsqlCopyToArray_internal() local 943 &pg_delim, &pg_delim_len, &pg_null_as, &pg_null_as_len, &pg_fields, &pg_fields_len) == FAILURE) { in pgsqlCopyToArray_internal() [all …]
|
/PHP-8.4/ext/pgsql/ |
H A D | pgsql.c | 3269 char *pg_null_as = NULL; in PHP_FUNCTION() local 3283 Z_PARAM_STRING(pg_null_as, pg_null_as_len) in PHP_FUNCTION() 3296 if (!pg_null_as) { in PHP_FUNCTION() 3297 pg_null_as = estrdup("\\\\N"); in PHP_FUNCTION() 3301 … STDOUT DELIMITER E'%c' NULL AS E'%s'", ZSTR_VAL(table_name), *ZSTR_VAL(pg_delimiter), pg_null_as); in PHP_FUNCTION() 3308 efree(pg_null_as); in PHP_FUNCTION() 3368 char *pg_null_as = NULL; in PHP_FUNCTION() local 3382 Z_PARAM_STRING(pg_null_as, pg_null_as_len) in PHP_FUNCTION() 3395 if (!pg_null_as) { in PHP_FUNCTION() 3396 pg_null_as = estrdup("\\\\N"); in PHP_FUNCTION() [all …]
|
Completed in 49 milliseconds