diff options
author | Rui Hirokawa <hirokawa@php.net> | 2002-07-11 15:45:35 +0000 |
---|---|---|
committer | Rui Hirokawa <hirokawa@php.net> | 2002-07-11 15:45:35 +0000 |
commit | 555ca8eeddb51ccd925d396444b961788fe40d00 (patch) | |
tree | 92da83274e36aceec36e300eda92ef57d2725840 /ext/pgsql/pgsql.c | |
parent | 20ed14259729e5dc1e06007faf8882974ff3adbc (diff) | |
download | php-git-555ca8eeddb51ccd925d396444b961788fe40d00.tar.gz |
added mbstring.language option in ext/mbstring.
Diffstat (limited to 'ext/pgsql/pgsql.c')
-rw-r--r-- | ext/pgsql/pgsql.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/ext/pgsql/pgsql.c b/ext/pgsql/pgsql.c index f4e41dd738..bbd4f0c08a 100644 --- a/ext/pgsql/pgsql.c +++ b/ext/pgsql/pgsql.c @@ -1457,7 +1457,7 @@ PHP_FUNCTION(pg_free_result) } /* }}} */ -/* {{{ proto int pg_last_oid(resource result) +/* {{{ proto string pg_last_oid(resource result) Returns the last object identifier */ PHP_FUNCTION(pg_last_oid) { @@ -1575,7 +1575,7 @@ PHP_FUNCTION(pg_untrace) } /* }}} */ -/* {{{ proto int pg_lo_create(resource connection) +/* {{{ proto int pg_lo_create([resource connection]) Create a large object */ PHP_FUNCTION(pg_lo_create) { @@ -1618,7 +1618,7 @@ PHP_FUNCTION(pg_lo_create) } /* }}} */ -/* {{{ proto bool pg_lo_unlink([resource connection,] int large_object_oid) +/* {{{ proto bool pg_lo_unlink([resource connection,] string large_object_oid) Delete a large object */ PHP_FUNCTION(pg_lo_unlink) { |