diff options
author | Yasuo Ohgaki <yohgaki@php.net> | 2002-09-30 09:07:57 +0000 |
---|---|---|
committer | Yasuo Ohgaki <yohgaki@php.net> | 2002-09-30 09:07:57 +0000 |
commit | 545f894524dc9c65ae34f1b965fdfeb6917e557a (patch) | |
tree | 7306a5344588be8380ee963c4c9e5ec8dc9089fb /ext/pgsql/php_pgsql.h | |
parent | 81684ed0f2248e786eb2b87f986a6e533e03f783 (diff) | |
download | php-git-545f894524dc9c65ae34f1b965fdfeb6917e557a.tar.gz |
Added pg_fetch_assoc(). Fixed proto. Added/fixed comments.
# It seems last attempt was failed. Try committing again.
Diffstat (limited to 'ext/pgsql/php_pgsql.h')
-rw-r--r-- | ext/pgsql/php_pgsql.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/ext/pgsql/php_pgsql.h b/ext/pgsql/php_pgsql.h index a18c7b598d..552f86230c 100644 --- a/ext/pgsql/php_pgsql.h +++ b/ext/pgsql/php_pgsql.h @@ -76,6 +76,7 @@ PHP_FUNCTION(pg_query); PHP_FUNCTION(pg_send_query); PHP_FUNCTION(pg_cancel_query); /* result functions */ +PHP_FUNCTION(pg_fetch_assoc); PHP_FUNCTION(pg_fetch_array); PHP_FUNCTION(pg_fetch_object); PHP_FUNCTION(pg_fetch_result); @@ -142,7 +143,7 @@ PHP_FUNCTION(pg_select); #define PGSQL_CONV_IGNORE_NOT_NULL (1<<3) /* Ignore NOT NULL constraints */ #define PGSQL_CONV_OPTS (PGSQL_CONV_IGNORE_DEFAULT|PGSQL_CONV_FORCE_NULL|PGSQL_CONV_IGNORE_NOT_NULL) /* php_pgsql_insert/update/select/delete options */ -#define PGSQL_DML_NO_CONV (1<<8) /* Call php_pgsql_convert() */ +#define PGSQL_DML_NO_CONV (1<<8) /* Do not call php_pgsql_convert() */ #define PGSQL_DML_EXEC (1<<9) /* Execute query */ #define PGSQL_DML_ASYNC (1<<10) /* Do async query */ #define PGSQL_DML_STRING (1<<11) /* Return query string */ |