]> granicus.if.org Git - php/commitdiff
Update test environement description. Typos
authorChristopher Jones <sixd@php.net>
Thu, 31 Jan 2008 20:21:27 +0000 (20:21 +0000)
committerChristopher Jones <sixd@php.net>
Thu, 31 Jan 2008 20:21:27 +0000 (20:21 +0000)
ext/oci8/README

index b15c47e5108cf73daec03da600d0f075dd652942..7de3008ef29dae73a0bb0107c02e3e58fd4d1976 100644 (file)
@@ -99,6 +99,10 @@ directory will contain logs of any failures.
   If the database is on the same machine as PHP, set
   $oracle_on_localhost to TRUE.
 
+  If Oracle 11g Database Resident Connection Pooling is being tested,
+  set $test_drcp to TRUE and ensure the connection string uses an
+  appropriate pooled server (see section 6.2.2).
+
   An alternative to editing details.inc is the set the environment
   variables
 
@@ -106,6 +110,7 @@ directory will contain logs of any failures.
     PHP_OCI8_TEST_PASS
     PHP_OCI8_TEST_DB
     PHP_OCI8_TEST_DB_ON_LOCALHOST
+    PHP_OCI8_TEST_DRCP
 
   for example:
 
@@ -113,6 +118,7 @@ directory will contain logs of any failures.
     $ export PHP_OCI8_TEST_PASS=oracle
     $ export PHP_OCI8_TEST_DB=localhost/XE
     $ export PHP_OCI8_TEST_DB_ON_LOCALHOST=TRUE
+    $ export PHP_OCI8_TEST_DRCP=FALSE
 
 5.1.2. Set any necessary environment variables for the Oracle
     database.  With Oracle 10g XE do:
@@ -160,7 +166,7 @@ directory will contain logs of any failures.
 6. DRCP and FAN Support
 -----------------------
 
-Th PHP OCI8 Beta extension has support for the Oracle Database
+The PHP 5.3 OCI8 Beta extension has support for the Oracle Database
 Resident Connection Pool (DRCP) and Fast Application Notification
 (FAN).
 
@@ -292,7 +298,7 @@ To enable FAN support in PHP, after building PHP with Oracle 10gR2 or
 6.3.4. Run your application, connecting to a 10gR2 or 11g database.
 
 
-6.4. Changes and Known Issues in this release from PECL OCI8 1.3.0 Beta
+6.4. Changes in this release from PECL OCI8 1.3.0 Beta
 
 The initial release of OCI8 with DRCP and FAN support was PECL OCI8
 1.3.0 Beta.  This section documents differences from that release.
@@ -330,11 +336,11 @@ documented restriction of Oracle Database 11g.
 6.4.3 Oci8.max_persistent setting is re-enabled.
 
 The php.ini parameter oci8.max_persistent will limit the number of
-persistent connctions that each PHP process will keep open between
+persistent connections that each PHP process will keep open between
 HTTP requests.  Any further oci_pconnect() calls once this limit is
 reached will be treated as oci_connect() calls.
 
-Is it still recommended that DRCP users modify the connection pool
+It is still recommended that DRCP users modify the connection pool
 settings of the database to control resource usage.  Non-DRCP users
 should consider setting oci8.persistent_timeout to close idle
 connections.