From 760c733d178cd06bbd7bb87d0903c33ffd15860e Mon Sep 17 00:00:00 2001 From: Christopher Kings-Lynne Date: Tue, 5 Apr 2005 08:56:09 +0000 Subject: [PATCH] Whitespace fix git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@183638 c90b9560-bf6c-de11-be94-00142212c4b1 --- .../pgsql/functions/pg-affected-rows.xml | 7 +-- .../pgsql/functions/pg-client-encoding.xml | 6 +-- reference/pgsql/functions/pg-close.xml | 6 +-- reference/pgsql/functions/pg-connect.xml | 50 +++++++++---------- reference/pgsql/functions/pg-num-fields.xml | 4 +- reference/pgsql/functions/pg-num-rows.xml | 4 +- .../functions/pg-set-error-verbosity.xml | 20 ++++---- 7 files changed, 49 insertions(+), 48 deletions(-) diff --git a/reference/pgsql/functions/pg-affected-rows.xml b/reference/pgsql/functions/pg-affected-rows.xml index 05999dc63a..936e16f529 100644 --- a/reference/pgsql/functions/pg-affected-rows.xml +++ b/reference/pgsql/functions/pg-affected-rows.xml @@ -1,5 +1,5 @@ - + @@ -47,8 +47,9 @@ &reftitle.returnvalues; - The number of rows affected by the query. If no tuple is - affected, it will return 0. + The number of rows affected by the query. If no tuple is + affected, it will return 0. + diff --git a/reference/pgsql/functions/pg-client-encoding.xml b/reference/pgsql/functions/pg-client-encoding.xml index bf307075fa..70f67d5069 100644 --- a/reference/pgsql/functions/pg-client-encoding.xml +++ b/reference/pgsql/functions/pg-client-encoding.xml @@ -1,5 +1,5 @@ - + @@ -16,8 +16,8 @@ resourceconnection - PostgreSQL supports automatic character set conversion between - server and client for certain character sets. + PostgreSQL supports automatic character set conversion between + server and client for certain character sets. pg_client_encoding returns the client encoding as a string. The returned string will be one of the standard PostgreSQL encoding identifiers. diff --git a/reference/pgsql/functions/pg-close.xml b/reference/pgsql/functions/pg-close.xml index a25a410560..25cb040b9c 100644 --- a/reference/pgsql/functions/pg-close.xml +++ b/reference/pgsql/functions/pg-close.xml @@ -1,5 +1,5 @@ - + @@ -45,7 +45,7 @@ pg_connect or pg_pconnect. - + @@ -53,7 +53,7 @@ &reftitle.returnvalues; - &true; on success, &false; on failure. + &true; on success, &false; on failure. diff --git a/reference/pgsql/functions/pg-connect.xml b/reference/pgsql/functions/pg-connect.xml index d974e89c03..11f280b229 100644 --- a/reference/pgsql/functions/pg-connect.xml +++ b/reference/pgsql/functions/pg-connect.xml @@ -1,5 +1,5 @@ - + @@ -40,34 +40,34 @@ connection_string - - The connection_string can be empty to use all default parameters, or it - can contain one or more parameter settings separated by whitespace. - Each parameter setting is in the form keyword = value. Spaces around - the equal sign are optional. To write an empty value or a value - containing spaces, surround it with single quotes, e.g., keyword = - 'a value'. Single quotes and backslashes within the value must be - escaped with a backslash, i.e., \' and \\. - - - The currently recognized parameter keywords are: - host, hostaddr, port, - dbname, user, - password, connect_timeout, - options, tty (ignored), sslmode, - requiressl (deprecated in favor of sslmode), and - service. Which of these arguments exist depends - on your PostgreSQL version. - + + The connection_string can be empty to use all default parameters, or it + can contain one or more parameter settings separated by whitespace. + Each parameter setting is in the form keyword = value. Spaces around + the equal sign are optional. To write an empty value or a value + containing spaces, surround it with single quotes, e.g., keyword = + 'a value'. Single quotes and backslashes within the value must be + escaped with a backslash, i.e., \' and \\. + + + The currently recognized parameter keywords are: + host, hostaddr, port, + dbname, user, + password, connect_timeout, + options, tty (ignored), sslmode, + requiressl (deprecated in favor of sslmode), and + service. Which of these arguments exist depends + on your PostgreSQL version. + - + connect_type - If PGSQL_CONNECT_FORCE_NEW is passed, then a new connection - is created, even if the connection_string is identical to - an existing connection. + If PGSQL_CONNECT_FORCE_NEW is passed, then a new connection + is created, even if the connection_string is identical to + an existing connection. @@ -78,7 +78,7 @@ &reftitle.returnvalues; - PostgreSQL connection resource on success, &false; on failure. + PostgreSQL connection resource on success, &false; on failure. diff --git a/reference/pgsql/functions/pg-num-fields.xml b/reference/pgsql/functions/pg-num-fields.xml index a050cead5b..c79a216818 100644 --- a/reference/pgsql/functions/pg-num-fields.xml +++ b/reference/pgsql/functions/pg-num-fields.xml @@ -1,5 +1,5 @@ - + @@ -45,7 +45,7 @@ &reftitle.returnvalues; - The number of fields (columns) in the result. On error, -1 is returned. + The number of fields (columns) in the result. On error, -1 is returned. diff --git a/reference/pgsql/functions/pg-num-rows.xml b/reference/pgsql/functions/pg-num-rows.xml index 725affc705..d0369e668e 100644 --- a/reference/pgsql/functions/pg-num-rows.xml +++ b/reference/pgsql/functions/pg-num-rows.xml @@ -1,5 +1,5 @@ - + @@ -45,7 +45,7 @@ &reftitle.returnvalues; - The number of rows in the result. On error, -1 is returned. + The number of rows in the result. On error, -1 is returned. diff --git a/reference/pgsql/functions/pg-set-error-verbosity.xml b/reference/pgsql/functions/pg-set-error-verbosity.xml index 9758af3f05..c9ef9047d2 100644 --- a/reference/pgsql/functions/pg-set-error-verbosity.xml +++ b/reference/pgsql/functions/pg-set-error-verbosity.xml @@ -1,5 +1,5 @@ - + @@ -26,13 +26,13 @@ and pg_result_error. - pg_set_error_verbosity sets the verbosity mode, returning the connection's previous - setting. In TERSE mode, returned messages include severity, primary text, and - position only; this will normally fit on a single line. The default mode - produces messages that include the above plus any detail, hint, or context - fields (these may span multiple lines). The VERBOSE mode includes all available - fields. Changing the verbosity does not affect the messages available from - already-existing result objects, only subsequently-created ones. + pg_set_error_verbosity sets the verbosity mode, returning the connection's previous + setting. In TERSE mode, returned messages include severity, primary text, and + position only; this will normally fit on a single line. The default mode + produces messages that include the above plus any detail, hint, or context + fields (these may span multiple lines). The VERBOSE mode includes all available + fields. Changing the verbosity does not affect the messages available from + already-existing result objects, only subsequently-created ones. @@ -56,8 +56,8 @@ The required verbosity: PGSQL_ERRORS_TERSE, - PGSQL_ERRORS_DEFAULT - or PGSQL_ERRORS_VERBOSE. + PGSQL_ERRORS_DEFAULT + or PGSQL_ERRORS_VERBOSE.