[PHP-DOC] cvs: phpdoc /en/reference/pgsql/functions pg-fetch-all.xml

2003-06-29 Thread Cornelia Boenigk
conni   Sun Jun 29 19:26:02 2003 EDT

  Modified files:  
/phpdoc/en/reference/pgsql/functionspg-fetch-all.xml 
  Log:
  fixed parameters and example
  
Index: phpdoc/en/reference/pgsql/functions/pg-fetch-all.xml
diff -u phpdoc/en/reference/pgsql/functions/pg-fetch-all.xml:1.1 
phpdoc/en/reference/pgsql/functions/pg-fetch-all.xml:1.2
--- phpdoc/en/reference/pgsql/functions/pg-fetch-all.xml:1.1Wed Oct  2 01:58:55 
2002
+++ phpdoc/en/reference/pgsql/functions/pg-fetch-all.xmlSun Jun 29 19:26:02 
2003
@@ -1,22 +1,21 @@
 
-
+
 
   

 pg_fetch_all
-Fetch a row as an array
+Fetch all rows from a result as an array


 Description
  
   arraypg_fetch_all
   resourceresult
-  introw
  
 
  pg_fetch_all returns an array that
- contains all row (tuples/records) in result resource. It returns
- &false;, if there are no more rows.
+ contains all rows (tuples/records) in result resource. It returns
+ &false;, if there are no rows.
 
 
  See also pg_fetch_row,
@@ -26,7 +25,7 @@
 
 
  
-  PostgreSQL fetch array
+  PostgreSQL fetch all
   
 

[PHP-DOC] cvs: phpdoc /en/reference/pgsql/functions pg-fetch-all.xml pg-fetch-assoc.xml pg-result-seek.xml pg-unescape-bytea.xml

2002-10-01 Thread Yasuo Ohgaki

yohgaki Wed Oct  2 01:58:55 2002 EDT

  Added files: 
/phpdoc/en/reference/pgsql/functionspg-fetch-all.xml 
pg-fetch-assoc.xml 
pg-result-seek.xml 
pg-unescape-bytea.xml 
  Log:
  Added pg_fetch_all(), pg_fetch_assoc(), pg_result_seek() and pg_unescape_byptea() 
desc.
  
  


Index: phpdoc/en/reference/pgsql/functions/pg-fetch-all.xml
+++ phpdoc/en/reference/pgsql/functions/pg-fetch-all.xml



  
   
pg_fetch_all
Fetch a row as an array
   
   
Description
 
  arraypg_fetch_all
  resourceresult
  introw
 

 pg_fetch_all returns an array that
 contains all row (tuples/records) in result resource. It returns
 &false;, if there are no more rows.


 See also pg_fetch_row,
pg_fetch_array,
pg_fetch_object and
pg_fetch_result.


 
  PostgreSQL fetch array
  

  
 

   
  



Index: phpdoc/en/reference/pgsql/functions/pg-fetch-assoc.xml
+++ phpdoc/en/reference/pgsql/functions/pg-fetch-assoc.xml



  
   
pg_fetch_assoc
Fetch a row as an array
   
   
Description
 
  arraypg_fetch_assoc
  resourceresult
  introw
 

 pg_fetch_assoc returns an associative array that
 corresponds to the fetched row (tuples/records). It returns
 &false;, if there are no more rows.


 pg_fetch_assoc is an extended version of
 pg_fetch_row.  In addition to storing the
 data in the numeric indices (field index) to the result array, it
 also stores the data in associative indices (field name) by
 default.


 row is row (record) number to be
 retrieved. First row is 0.


 pg_fetch_assoc is NOT significantly
 slower than using pg_fetch_row, while it
 provides a significant ease of use.


 See also pg_fetch_row,
pg_fetch_array,
pg_fetch_object and
pg_fetch_result.


 
  PostgreSQL fetch array
  

  
 

   
  



Index: phpdoc/en/reference/pgsql/functions/pg-result-seek.xml
+++ phpdoc/en/reference/pgsql/functions/pg-result-seek.xml



  
   
pg_result_seek
Set internal row offset in result resource
   
   
Description
 
  arraypg_result_seek
  resourceresult
  intoffset
 

 pg_result_seek set internal row offset in
 reuslt resource.  It returns &false;, if there is error.


 See also pg_fetch_row,
pg_fetch_assoc,
pg_fetch_array,
pg_fetch_object and
pg_fetch_result.

   
  



Index: phpdoc/en/reference/pgsql/functions/pg-unescape-bytea.xml
+++ phpdoc/en/reference/pgsql/functions/pg-unescape-bytea.xml



  
   
pg_unescape_bytea

 Escape binary for bytea type

   
   
Description
 
  stringpg_unescape_bytea
  stringdata
 

 pg_unescape_bytea unescapes string from
 bytea datatype.  It returns unescaped string (binary).


 
  When you SELECT bytea type, PostgreSQL returns octal byte value
  prefixed by \ (e.g. \032). Users are supposed to convert back to
  binary format by yourself.
 
 
  This function requires PostgreSQL 7.2 or later. With PostgreSQL
  7.2.0 and 7.2.1, bytea type must be casted when you enable
  multi-byte support. i.e. INSERT INTO test_table (image)
  VALUES ('$image_escaped'::bytea); PostgreSQL 7.2.2 or
  later does not need cast. Exception is when client and backend
  character encoding does not match, there may be multi-byte
  stream error. User must cast to bytea to avoid this error.
 


 See also pg_escape_bytea and
 pg_escape_string

   
  





-- 
PHP Documentation Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php