Home
last modified time | relevance | path

Searched refs:pg_null_as (Results 1 – 2 of 2) sorted by relevance

/php-src/ext/pdo_pgsql/
H A Dpgsql_driver.c598 char *table_name, *pg_delim = NULL, *pg_null_as = NULL, *pg_fields = NULL; in pgsqlCopyFromArray_internal() local
607 &pg_delim, &pg_delim_len, &pg_null_as, &pg_null_as_len, &pg_fields, &pg_fields_len) == FAILURE) { in pgsqlCopyFromArray_internal()
624 …AS E'%s'", table_name, (pg_delim_len ? *pg_delim : '\t'), (pg_null_as_len ? pg_null_as : "\\\\N")); in pgsqlCopyFromArray_internal()
714 char *table_name, *filename, *pg_delim = NULL, *pg_null_as = NULL, *pg_fields = NULL; in pgsqlCopyFromFile_internal() local
723 &pg_delim, &pg_delim_len, &pg_null_as, &pg_null_as_len, &pg_fields, &pg_fields_len) == FAILURE) { in pgsqlCopyFromFile_internal()
816 char *table_name, *pg_delim = NULL, *pg_null_as = NULL, *pg_fields = NULL, *filename = NULL; in pgsqlCopyToFile_internal() local
827 … &pg_delim, &pg_delim_len, &pg_null_as, &pg_null_as_len, &pg_fields, &pg_fields_len) == FAILURE) { in pgsqlCopyToFile_internal()
852 …AS E'%s'", table_name, (pg_delim_len ? *pg_delim : '\t'), (pg_null_as_len ? pg_null_as : "\\\\N")); in pgsqlCopyToFile_internal()
916 char *table_name, *pg_delim = NULL, *pg_null_as = NULL, *pg_fields = NULL; in pgsqlCopyToArray_internal() local
925 &pg_delim, &pg_delim_len, &pg_null_as, &pg_null_as_len, &pg_fields, &pg_fields_len) == FAILURE) { in pgsqlCopyToArray_internal()
[all …]
/php-src/ext/pgsql/
H A Dpgsql.c3044 char *pg_null_as = NULL; in PHP_FUNCTION() local
3054 &table_name, &pg_delimiter, &pg_null_as, &pg_null_as_len) == FAILURE in PHP_FUNCTION()
3069 if (!pg_null_as) { in PHP_FUNCTION()
3070 pg_null_as = estrdup("\\\\N"); in PHP_FUNCTION()
3074 … STDOUT DELIMITER E'%c' NULL AS E'%s'", ZSTR_VAL(table_name), *ZSTR_VAL(pg_delimiter), pg_null_as); in PHP_FUNCTION()
3081 efree(pg_null_as); in PHP_FUNCTION()
3141 char *pg_null_as = NULL; in PHP_FUNCTION() local
3150 &table_name, &pg_rows, &pg_delimiter, &pg_null_as, &pg_null_as_len) == FAILURE in PHP_FUNCTION()
3165 if (!pg_null_as) { in PHP_FUNCTION()
3166 pg_null_as = estrdup("\\\\N"); in PHP_FUNCTION()
[all …]

Completed in 23 milliseconds