[PHP-DOC] cvs: phpdoc /en/reference/dbx constants.xml reference.xml /en/reference/dbx/functions dbx-connect.xml dbx-query.xml

2005-02-02 Thread Mehdi Achour
didou   Wed Feb  2 03:41:52 2005 EDT

  Modified files:  
/phpdoc/en/reference/dbxconstants.xml reference.xml 
/phpdoc/en/reference/dbx/functions  dbx-connect.xml dbx-query.xml 
  Log:
  CVS is now called PHP 5 :)
  
http://cvs.php.net/diff.php/phpdoc/en/reference/dbx/constants.xml?r1=1.9&r2=1.10&ty=u
Index: phpdoc/en/reference/dbx/constants.xml
diff -u phpdoc/en/reference/dbx/constants.xml:1.9 
phpdoc/en/reference/dbx/constants.xml:1.10
--- phpdoc/en/reference/dbx/constants.xml:1.9   Mon Dec 15 13:42:04 2003
+++ phpdoc/en/reference/dbx/constants.xml   Wed Feb  2 03:41:51 2005
@@ -1,5 +1,5 @@
 
-
+
  
  &reftitle.constants;
  &extension.constants;
@@ -84,7 +84,7 @@
 
  
   DBX_SQLITE 
-  (integer) (CVS only)
+  (integer) (PHP 5)
  
  
   
@@ -139,7 +139,7 @@
 
  
   DBX_RESULT_UNBUFFERED 
-  (integer) (CVS only)
+  (integer) (PHP 5)
  
  
   
http://cvs.php.net/diff.php/phpdoc/en/reference/dbx/reference.xml?r1=1.16&r2=1.17&ty=u
Index: phpdoc/en/reference/dbx/reference.xml
diff -u phpdoc/en/reference/dbx/reference.xml:1.16 
phpdoc/en/reference/dbx/reference.xml:1.17
--- phpdoc/en/reference/dbx/reference.xml:1.16  Sun Apr 11 11:41:59 2004
+++ phpdoc/en/reference/dbx/reference.xml   Wed Feb  2 03:41:51 2005
@@ -1,5 +1,5 @@
 
-
+
 
 
+
 
   

@@ -71,7 +71,7 @@
   
   

-DBX_SQLITE or "sqlite" (CVS only)
+DBX_SQLITE or "sqlite" (PHP 5)

   
  
http://cvs.php.net/diff.php/phpdoc/en/reference/dbx/functions/dbx-query.xml?r1=1.16&r2=1.17&ty=u
Index: phpdoc/en/reference/dbx/functions/dbx-query.xml
diff -u phpdoc/en/reference/dbx/functions/dbx-query.xml:1.16 
phpdoc/en/reference/dbx/functions/dbx-query.xml:1.17
--- phpdoc/en/reference/dbx/functions/dbx-query.xml:1.16Sun Mar 21 
11:59:26 2004
+++ phpdoc/en/reference/dbx/functions/dbx-query.xml Wed Feb  2 03:41:52 2005
@@ -1,5 +1,5 @@
 
-
+
 
   

@@ -100,7 +100,7 @@
   
   

-DBX_RESULT_UNBUFFERED (CVS only)
+DBX_RESULT_UNBUFFERED (PHP 5)


 


[PHP-DOC] cvs: phpdoc /en/reference/dbx constants.xml reference.xml /en/reference/dbx/functions dbx-fetch-row.xml dbx-query.xml

2003-09-05 Thread Marc Boeren
mboeren Fri Sep  5 05:19:15 2003 EDT

  Added files: 
/phpdoc/en/reference/dbx/functions  dbx-fetch-row.xml 

  Modified files:  
/phpdoc/en/reference/dbxconstants.xml reference.xml 
/phpdoc/en/reference/dbx/functions  dbx-query.xml 
  Log:
  Added documentation for the new DBX_RESULT_UNBUFFERED flag and the new
  dbx_fetch_row function.
  # untested xml-files, if someone with a working setup could test them 
  # please? Thanks!
  
  Index: phpdoc/en/reference/dbx/constants.xml
diff -u phpdoc/en/reference/dbx/constants.xml:1.7 
phpdoc/en/reference/dbx/constants.xml:1.8
--- phpdoc/en/reference/dbx/constants.xml:1.7   Wed Jul  9 12:40:04 2003
+++ phpdoc/en/reference/dbx/constants.xml   Fri Sep  5 05:19:14 2003
@@ -1,5 +1,5 @@
 
-
+
  
  &reftitle.constants;
  &extension.constants;
@@ -129,6 +129,17 @@
  
   DBX_RESULT_ASSOC 
   (integer)
+ 
+ 
+  
+   
+  
+ 
+
+
+ 
+  DBX_RESULT_UNBUFFERED 
+  (integer) (CVS only)
  
  
   
Index: phpdoc/en/reference/dbx/reference.xml
diff -u phpdoc/en/reference/dbx/reference.xml:1.12 
phpdoc/en/reference/dbx/reference.xml:1.13
--- phpdoc/en/reference/dbx/reference.xml:1.12  Wed Jul  9 12:40:04 2003
+++ phpdoc/en/reference/dbx/reference.xml   Fri Sep  5 05:19:14 2003
@@ -1,5 +1,5 @@
 
-
+
 
 
+
 
   

@@ -47,7 +47,6 @@
 ]]>
  
 
-
 
  The flags parameter is used to control the amount of
  information that is returned. It may be any combination of the following 
@@ -104,6 +103,24 @@
   
   

+DBX_RESULT_UNBUFFERED (CVS only)
+   
+   
+
+ This flag will not create the data property, and 
+ the rows property will initially be 0. Use this 
+ flag for large datasets, and use dbx_fetch_row to
+ retrieve the results row by row.
+
+
+ The dbx_fetch_row function will return rows that
+ are conformant to the flags set with this query. Incidentally, it will
+ also update the rows each time it is called.
+
+   
+  
+  
+   
 DBX_COLNAMES_UNCHANGED (available from PHP 4.3.0)


@@ -137,7 +154,7 @@
  
  Note that DBX_RESULT_INDEX is always used, regardless 
  of the actual value of flags parameter. This means 
- that the following combinations is effective only:
+ that only the following combinations are effective:
  
   

@@ -161,7 +178,7 @@
  
 
 
- The returing object has four or five
+ The returned object has four or five
  properties depending on flags:
  
   
@@ -268,7 +285,25 @@
 ]]>
  
 
-   
+
+ How to handle UNBUFFERED queries
+ 
+
+ 
+
+  
   
  
 
@@ -282,7 +317,8 @@
  
 
 
- See also dbx_escape_string and 
+ See also dbx_escape_string, 
+ dbx_fetch_row and 
  dbx_connect.
 


Index: phpdoc/en/reference/dbx/functions/dbx-fetch-row.xml
+++ phpdoc/en/reference/dbx/functions/dbx-fetch-row.xml


  
   
dbx_fetch_row
Fetches rows from a query-result that had the 
DBX_RESULT_UNBUFFERED flag set
   
   
Description
 
  objectdbx_fetch_row
  
objectresult_identifier
 

 dbx_fetch_row returns a row on success, and 
 0 on failure (e.g. when no more rows are available). 
 When the DBX_RESULT_UNBUFFERED is not set in the 
 query, dbx_fetch_row will fail as all rows have 
 already been fetched into the results data property.


 As a side effect, the rows property of the query-result
 object is incremented for each successful call to 
 dbx_fetch_row.


 How to handle the returned value
  

  


 The result_identifier parameter is the result
 object returned by a call to dbx_query.


 The returned array contains the same information as any row would have
 in the dbx_query result data property, including
 columns accessable by index or fieldname when the flags for dbx_guery
 were set that way.


 See also dbx_query.

   
  




[PHP-DOC] cvs: phpdoc /en/reference/dbx constants.xml reference.xml /en/reference/dbx/functions dbx-connect.xml

2003-07-09 Thread Marc Boeren
mboeren Wed Jul  9 12:40:04 2003 EDT

  Modified files:  
/phpdoc/en/reference/dbxconstants.xml reference.xml 
/phpdoc/en/reference/dbx/functions  dbx-connect.xml 
  Log:
  Document addition of SQLite support in DBX (Marc).
  
  
Index: phpdoc/en/reference/dbx/constants.xml
diff -u phpdoc/en/reference/dbx/constants.xml:1.6 
phpdoc/en/reference/dbx/constants.xml:1.7
--- phpdoc/en/reference/dbx/constants.xml:1.6   Wed May 28 19:03:07 2003
+++ phpdoc/en/reference/dbx/constants.xml   Wed Jul  9 12:40:04 2003
@@ -1,5 +1,5 @@
 
-
+
  
  &reftitle.constants;
  &extension.constants;
@@ -74,6 +74,17 @@
  
   DBX_SYBASECT 
   (integer)
+ 
+ 
+  
+   
+  
+ 
+
+
+ 
+  DBX_SQLITE 
+  (integer) (cvs only)
  
  
   
Index: phpdoc/en/reference/dbx/reference.xml
diff -u phpdoc/en/reference/dbx/reference.xml:1.11 
phpdoc/en/reference/dbx/reference.xml:1.12
--- phpdoc/en/reference/dbx/reference.xml:1.11  Wed Nov 27 19:42:43 2002
+++ phpdoc/en/reference/dbx/reference.xml   Wed Jul  9 12:40:04 2003
@@ -1,5 +1,5 @@
 
-
+
 
 
+
 
   

@@ -67,6 +67,11 @@
   

 DBX_OCI8 or "oci8" (available from PHP 4.3.0)
+   
+  
+  
+   
+DBX_SQLITE or "sqlite" (cvs only)

   
  



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



[PHP-DOC] cvs: phpdoc /en/reference/dbx constants.xml ini.xml reference.xml /en/reference/dbx/functions dbx-connect.xml dbx-query.xml

2002-11-22 Thread Marc Boeren
mboeren Fri Nov 22 03:30:33 2002 EDT

  Modified files:  
/phpdoc/en/reference/dbxconstants.xml ini.xml reference.xml 
/phpdoc/en/reference/dbx/functions  dbx-connect.xml dbx-query.xml 
  Log:
  Update PHP version availability for new Oracle oci8 support.
  
  
Index: phpdoc/en/reference/dbx/constants.xml
diff -u phpdoc/en/reference/dbx/constants.xml:1.4 
phpdoc/en/reference/dbx/constants.xml:1.5
--- phpdoc/en/reference/dbx/constants.xml:1.4   Tue Oct 29 05:42:23 2002
+++ phpdoc/en/reference/dbx/constants.xml   Fri Nov 22 03:30:32 2002
@@ -1,5 +1,5 @@
 
-
+
  
  &reftitle.constants;
  &extension.constants;
@@ -62,7 +62,7 @@
 
  
   DBX_OCI8 
-  (integer) CVS only
+  (integer) (available from PHP 
+4.3.0)
  
  
   
@@ -128,7 +128,7 @@
 
  
   DBX_COLNAMES_UNCHANGED 
-  (integer) CVS only
+  (integer) (available from PHP 
+4.3.0)
  
  
   
@@ -139,7 +139,7 @@
 
  
   DBX_COLNAMES_UPPERCASE 
-  (integer) CVS only
+  (integer) (available from PHP 
+4.3.0)
  
  
   
@@ -150,7 +150,7 @@
 
  
   DBX_COLNAMES_LOWERCASE 
-  (integer) CVS only
+  (integer) (available from PHP 
+4.3.0)
  
  
   
Index: phpdoc/en/reference/dbx/ini.xml
diff -u phpdoc/en/reference/dbx/ini.xml:1.2 phpdoc/en/reference/dbx/ini.xml:1.3
--- phpdoc/en/reference/dbx/ini.xml:1.2 Tue Oct 29 03:41:02 2002
+++ phpdoc/en/reference/dbx/ini.xml Fri Nov 22 03:30:33 2002
@@ -1,5 +1,5 @@
 
-
+
 
  &reftitle.runtime;
  &extension.runtime;
@@ -28,7 +28,7 @@
 
 
  
-  This ini-option is in CVS only.
+  This ini-option is available available from PHP 4.3.0.
  
 
 
Index: phpdoc/en/reference/dbx/reference.xml
diff -u phpdoc/en/reference/dbx/reference.xml:1.9 
phpdoc/en/reference/dbx/reference.xml:1.10
--- phpdoc/en/reference/dbx/reference.xml:1.9   Tue Oct 29 05:42:23 2002
+++ phpdoc/en/reference/dbx/reference.xml   Fri Nov 22 03:30:33 2002
@@ -1,5 +1,5 @@
 
-
+
 
 
+
 
   

@@ -66,7 +66,7 @@
   
   

-DBX_OCI8 or "oci8" (CVS only)
+DBX_OCI8 or "oci8" (available from PHP 4.3.0)

   
  
Index: phpdoc/en/reference/dbx/functions/dbx-query.xml
diff -u phpdoc/en/reference/dbx/functions/dbx-query.xml:1.6 
phpdoc/en/reference/dbx/functions/dbx-query.xml:1.7
--- phpdoc/en/reference/dbx/functions/dbx-query.xml:1.6 Wed Oct 30 11:08:52 2002
+++ phpdoc/en/reference/dbx/functions/dbx-query.xml Fri Nov 22 03:30:33 2002
@@ -1,5 +1,5 @@
 
-
+
 
   

@@ -104,7 +104,7 @@
   
   

-DBX_COLNAMES_UNCHANGED (CVS only)
+DBX_COLNAMES_UNCHANGED (available from PHP 4.3.0)


 
@@ -114,7 +114,7 @@
   
   

-DBX_COLNAMES_UPPERCASE (CVS only)
+DBX_COLNAMES_UPPERCASE (available from PHP 4.3.0)


 
@@ -125,7 +125,7 @@
   
   

-DBX_COLNAMES_LOWERCASE (CVS only)
+DBX_COLNAMES_LOWERCASE (available from PHP 4.3.0)


 



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




[PHP-DOC] cvs: phpdoc /en/reference/dbx constants.xml reference.xml

2002-10-29 Thread Marc Boeren
mboeren Tue Oct 29 05:42:23 2002 EDT

  Modified files:  
/phpdoc/en/reference/dbxconstants.xml reference.xml 
  Log:
  Moved notes about availability
  
  
Index: phpdoc/en/reference/dbx/constants.xml
diff -u phpdoc/en/reference/dbx/constants.xml:1.3 
phpdoc/en/reference/dbx/constants.xml:1.4
--- phpdoc/en/reference/dbx/constants.xml:1.3   Mon Oct 28 06:08:18 2002
+++ phpdoc/en/reference/dbx/constants.xml   Tue Oct 29 05:42:23 2002
@@ -1,5 +1,5 @@
 
-
+
  
  &reftitle.constants;
  &extension.constants;
@@ -62,7 +62,7 @@
 
  
   DBX_OCI8 
-  (integer)
+  (integer) CVS only
  
  
   
@@ -128,7 +128,7 @@
 
  
   DBX_COLNAMES_UNCHANGED 
-  (integer)
+  (integer) CVS only
  
  
   
@@ -139,7 +139,7 @@
 
  
   DBX_COLNAMES_UPPERCASE 
-  (integer)
+  (integer) CVS only
  
  
   
@@ -150,7 +150,7 @@
 
  
   DBX_COLNAMES_LOWERCASE 
-  (integer)
+  (integer) CVS only
  
  
   
Index: phpdoc/en/reference/dbx/reference.xml
diff -u phpdoc/en/reference/dbx/reference.xml:1.8 
phpdoc/en/reference/dbx/reference.xml:1.9
--- phpdoc/en/reference/dbx/reference.xml:1.8   Tue Oct 29 04:12:14 2002
+++ phpdoc/en/reference/dbx/reference.xml   Tue Oct 29 05:42:23 2002
@@ -1,5 +1,5 @@
 
-
+
 
 @ -89,14 +89,6 @@

 
&reference.dbx.ini;
-   
-
- The DBX_OCI8, 
- DBX_COLNAMES_UNCHANGED, 
- DBX_COLNAMES_UPPERCASE and
- DBX_COLNAMES_LOWERCASE constants are in CVS only.
-
-   
 

 &reftitle.resources;



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




RE: [PHP-DOC] cvs: phpdoc /en/reference/dbx constants.xml ini.xml reference.xml /en/reference/dbx/functions dbx-query.xml

2002-10-29 Thread Marc Boeren

Hi,

> > Where do I put these notes?
> Exactly where the new feature is explained.

I meant where I could put the  tags, but I've made the changes already
now.

Cheerio, Marc.

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




Re: [PHP-DOC] cvs: phpdoc /en/reference/dbx constants.xml ini.xmlreference.xml /en/reference/dbx/functions dbx-query.xml

2002-10-29 Thread Gabor Hojtsy
> > Any of these recently become available?  If so, typically
> > we add 's to reflect when they did became available
> > in PHP.
> 
> Yeah, uhm, yesterday :-)
> So they're in CVS only.
> 
> Where do I put these notes?

Exactly where the new feature is explained.

Goba


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




RE: [PHP-DOC] cvs: phpdoc /en/reference/dbx constants.xml ini.xml reference.xml /en/reference/dbx/functions dbx-query.xml

2002-10-29 Thread Marc Boeren

Hi,

> Any of these recently become available?  If so, typically
> we add 's to reflect when they did became available
> in PHP.

Yeah, uhm, yesterday :-)
So they're in CVS only.

Where do I put these notes?

> Btw, no build errors over here! :)

I tried to be careful with the copy&paste :)

Cheerio, Marc.

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




Re: [PHP-DOC] cvs: phpdoc /en/reference/dbx constants.xml ini.xmlreference.xml /en/reference/dbx/functions dbx-query.xml

2002-10-28 Thread Philip Olson
Any of these recently become available?  If so, typically
we add 's to reflect when they did became available
in PHP.

Btw, no build errors over here! :)

Regards,
Philip


On Mon, 28 Oct 2002, Marc Boeren wrote:

> mboeren   Mon Oct 28 06:08:19 2002 EDT
> 
>   Added files: 
> /phpdoc/en/reference/dbx  ini.xml 
> 
>   Modified files:  
> /phpdoc/en/reference/dbx  constants.xml reference.xml 
> /phpdoc/en/reference/dbx/functionsdbx-query.xml 
>   Log:
>   Updated to reflect new ini-entry and falgs to dbx_query.
>   
>   
> Index: phpdoc/en/reference/dbx/constants.xml
> diff -u phpdoc/en/reference/dbx/constants.xml:1.2 
>phpdoc/en/reference/dbx/constants.xml:1.3
> --- phpdoc/en/reference/dbx/constants.xml:1.2 Sun May  5 12:39:15 2002
> +++ phpdoc/en/reference/dbx/constants.xml Mon Oct 28 06:08:18 2002
> @@ -1,5 +1,5 @@
>  
> -
> +
>   
>   &reftitle.constants;
>   &extension.constants;
> @@ -117,6 +117,39 @@
>  
>   
>DBX_RESULT_ASSOC 
> +  (integer)
> + 
> + 
> +  
> +   
> +  
> + 
> +
> +
> + 
> +  DBX_COLNAMES_UNCHANGED 
> +  (integer)
> + 
> + 
> +  
> +   
> +  
> + 
> +
> +
> + 
> +  DBX_COLNAMES_UPPERCASE 
> +  (integer)
> + 
> + 
> +  
> +   
> +  
> + 
> +
> +
> + 
> +  DBX_COLNAMES_LOWERCASE 
>(integer)
>   
>   
> Index: phpdoc/en/reference/dbx/reference.xml
> diff -u phpdoc/en/reference/dbx/reference.xml:1.5 
>phpdoc/en/reference/dbx/reference.xml:1.6
> --- phpdoc/en/reference/dbx/reference.xml:1.5 Thu Oct 24 11:06:41 2002
> +++ phpdoc/en/reference/dbx/reference.xml Mon Oct 28 06:08:18 2002
> @@ -1,5 +1,5 @@
>  
> -
> +
>  
>  @ -87,11 +87,8 @@
>   specific documentation.
>  
> 
> -   
> -   
> -&reftitle.runtime;
> -&no.config;
> -   
> +
> +   &reference.dbx.ini;
>  
> 
>  &reftitle.resources;
> Index: phpdoc/en/reference/dbx/functions/dbx-query.xml
> diff -u phpdoc/en/reference/dbx/functions/dbx-query.xml:1.3 
>phpdoc/en/reference/dbx/functions/dbx-query.xml:1.4
> --- phpdoc/en/reference/dbx/functions/dbx-query.xml:1.3   Thu Oct 24 11:06:41 
>2002
> +++ phpdoc/en/reference/dbx/functions/dbx-query.xml   Mon Oct 28 06:08:18 2002
> @@ -1,5 +1,5 @@
>  
> -
> +
>  
>
> 
> @@ -51,7 +51,8 @@
>  
>   The flags parameter is used to control the amount of
>   information that is returned. It may be any combination of the following 
> - constants with the bitwise OR operator (|):
> + constants with the bitwise OR operator (|). The DBX_COLNAMES_* flags 
> + override the dbx.colnames_case setting from php.ini.
>   
>
> 
> @@ -98,6 +99,38 @@
>   data, so modifying data[0][0] causes that
>   data[0]['field_name_for_first_column'] is modified
>   as well.
> +
> +   
> +  
> +  
> +   
> +DBX_COLNAMES_UNCHANGED
> +   
> +   
> +
> + The case of the returned column names will not be changed.
> +
> +   
> +  
> +  
> +   
> +DBX_COLNAMES_UPPERCASE
> +   
> +   
> +
> + The case of the returned column names will be changed to 
> + uppercase.
> +
> +   
> +  
> +  
> +   
> +DBX_COLNAMES_LOWERCASE
> +   
> +   
> +
> + The case of the returned column names will be changed to 
> + lowercase.
>  
> 
>
> 
> Index: phpdoc/en/reference/dbx/ini.xml
> +++ phpdoc/en/reference/dbx/ini.xml
> 
> 
> 
>  &reftitle.runtime;
>  &extension.runtime;
>  
>   
>DBX Configuration Options
>
> 
>  
>   Name
>   Default
>   Changeable
>  
> 
> 
>  
>   dbx.colnames_case
>   "unchanged"
>   PHP_INI_SYSTEM
>  
> 
>
>   
>   For further details and definition of the PHP_INI_* constants see
>   ini_set.
> 
> 
>  Here is a short explanation of the configuration directives.
>  
>
>
> dbx.colnames_case
> string
>
>
> 
>  Columns names can be returned "unchanged" or converted to
>  "uppercase" or "lowercase". This directive can be overridden
>  with a flag to dbx_query.
> 
>
>   
>  
>  
>  
> 
> 
> 
> 
> 
> 
> 
> -- 
> PHP Documentation Mailing List (http://www.php.net/)
> To unsubscribe, visit: http://www.php.net/unsub.php
> 



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




[PHP-DOC] cvs: phpdoc /en/reference/dbx constants.xml ini.xml reference.xml /en/reference/dbx/functions dbx-query.xml

2002-10-28 Thread Marc Boeren
mboeren Mon Oct 28 06:08:19 2002 EDT

  Added files: 
/phpdoc/en/reference/dbxini.xml 

  Modified files:  
/phpdoc/en/reference/dbxconstants.xml reference.xml 
/phpdoc/en/reference/dbx/functions  dbx-query.xml 
  Log:
  Updated to reflect new ini-entry and falgs to dbx_query.
  
  
Index: phpdoc/en/reference/dbx/constants.xml
diff -u phpdoc/en/reference/dbx/constants.xml:1.2 
phpdoc/en/reference/dbx/constants.xml:1.3
--- phpdoc/en/reference/dbx/constants.xml:1.2   Sun May  5 12:39:15 2002
+++ phpdoc/en/reference/dbx/constants.xml   Mon Oct 28 06:08:18 2002
@@ -1,5 +1,5 @@
 
-
+
  
  &reftitle.constants;
  &extension.constants;
@@ -117,6 +117,39 @@
 
  
   DBX_RESULT_ASSOC 
+  (integer)
+ 
+ 
+  
+   
+  
+ 
+
+
+ 
+  DBX_COLNAMES_UNCHANGED 
+  (integer)
+ 
+ 
+  
+   
+  
+ 
+
+
+ 
+  DBX_COLNAMES_UPPERCASE 
+  (integer)
+ 
+ 
+  
+   
+  
+ 
+
+
+ 
+  DBX_COLNAMES_LOWERCASE 
   (integer)
  
  
Index: phpdoc/en/reference/dbx/reference.xml
diff -u phpdoc/en/reference/dbx/reference.xml:1.5 
phpdoc/en/reference/dbx/reference.xml:1.6
--- phpdoc/en/reference/dbx/reference.xml:1.5   Thu Oct 24 11:06:41 2002
+++ phpdoc/en/reference/dbx/reference.xml   Mon Oct 28 06:08:18 2002
@@ -1,5 +1,5 @@
 
-
+
 
 @ -87,11 +87,8 @@
  specific documentation.
 

-   
-   
-&reftitle.runtime;
-&no.config;
-   
+
+   &reference.dbx.ini;
 

 &reftitle.resources;
Index: phpdoc/en/reference/dbx/functions/dbx-query.xml
diff -u phpdoc/en/reference/dbx/functions/dbx-query.xml:1.3 
phpdoc/en/reference/dbx/functions/dbx-query.xml:1.4
--- phpdoc/en/reference/dbx/functions/dbx-query.xml:1.3 Thu Oct 24 11:06:41 2002
+++ phpdoc/en/reference/dbx/functions/dbx-query.xml Mon Oct 28 06:08:18 2002
@@ -1,5 +1,5 @@
 
-
+
 
   

@@ -51,7 +51,8 @@
 
  The flags parameter is used to control the amount of
  information that is returned. It may be any combination of the following 
- constants with the bitwise OR operator (|):
+ constants with the bitwise OR operator (|). The DBX_COLNAMES_* flags 
+ override the dbx.colnames_case setting from php.ini.
  
   

@@ -98,6 +99,38 @@
  data, so modifying data[0][0] causes that
  data[0]['field_name_for_first_column'] is modified
  as well.
+
+   
+  
+  
+   
+DBX_COLNAMES_UNCHANGED
+   
+   
+
+ The case of the returned column names will not be changed.
+
+   
+  
+  
+   
+DBX_COLNAMES_UPPERCASE
+   
+   
+
+ The case of the returned column names will be changed to 
+ uppercase.
+
+   
+  
+  
+   
+DBX_COLNAMES_LOWERCASE
+   
+   
+
+ The case of the returned column names will be changed to 
+ lowercase.
 

   

Index: phpdoc/en/reference/dbx/ini.xml
+++ phpdoc/en/reference/dbx/ini.xml



 &reftitle.runtime;
 &extension.runtime;
 
  
   DBX Configuration Options
   

 
  Name
  Default
  Changeable
 


 
  dbx.colnames_case
  "unchanged"
  PHP_INI_SYSTEM
 

   
  
  For further details and definition of the PHP_INI_* constants see
  ini_set.


 Here is a short explanation of the configuration directives.
 
   
   
dbx.colnames_case
string
   
   

 Columns names can be returned "unchanged" or converted to
 "uppercase" or "lowercase". This directive can be overridden
 with a flag to dbx_query.

   
  
 
 
 







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




[PHP-DOC] cvs: phpdoc /en/reference/dbx constants.xml

2002-05-05 Thread Friedhelm Betz

betzSun May  5 12:39:15 2002 EDT

  Modified files:  
/phpdoc/en/reference/dbxconstants.xml 
  Log:
  id correction
  
Index: phpdoc/en/reference/dbx/constants.xml
diff -u phpdoc/en/reference/dbx/constants.xml:1.1 
phpdoc/en/reference/dbx/constants.xml:1.2
--- phpdoc/en/reference/dbx/constants.xml:1.1   Mon Apr 29 08:08:53 2002
+++ phpdoc/en/reference/dbx/constants.xml   Sun May  5 12:39:15 2002
@@ -1,6 +1,6 @@
 
-
- 
+
+ 
  &reftitle.constants;
  &extension.constants;
   





[PHP-DOC] cvs: phpdoc /en/reference/dbx constants.xml

2002-04-29 Thread Friedhelm Betz

betzMon Apr 29 08:08:53 2002 EDT

  Added files: 
/phpdoc/en/reference/dbxconstants.xml 
  Log:
  constants for dbx added
  

Index: phpdoc/en/reference/dbx/constants.xml
+++ phpdoc/en/reference/dbx/constants.xml


 
 &reftitle.constants;
 &extension.constants;
  

 
  DBX_MYSQL 
  (integer)
 
 
  
   
  
 


 
  DBX_ODBC 
  (integer)
 
 
  
   
  
 


 
  DBX_PGSQL 
  (integer)
 
 
  
   
  
 


 
  DBX_MSSQL 
  (integer)
 
 
  
   
  
 


 
  DBX_FBSQL 
  (integer)
 
 
  
   
  
 


 
  DBX_OCI8 
  (integer)
 
 
  
   
  
 


 
  DBX_SYBASECT 
  (integer)
 
 
  
   
  
 


 
  DBX_PERSISTENT 
  (integer)
 
 
  
   
  
 


 
  DBX_RESULT_INFO 
  (integer)
 
 
  
   
  
 


 
  DBX_RESULT_INDEX 
  (integer)
 
 
  
   
  
 


 
  DBX_RESULT_ASSOC 
  (integer)
 
 
  
   
  
 


 
  DBX_CMP_NATIVE 
  (integer)
 
 
  
   
  
 


 
  DBX_CMP_TEXT 
  (integer)
 
 
  
   
  
 


 
  DBX_CMP_NUMBER 
  (integer)
 
 
  
   
  
 


 
  DBX_CMP_ASC 
  (integer)
 
 
  
   
  
 


 
  DBX_CMP_DESC 
  (integer)