From f1b8c3bd33745cdab0b5711bb5e09c2d4b23433b Mon Sep 17 00:00:00 2001 From: Matthew Peters Date: Thu, 4 Aug 2005 12:15:48 +0000 Subject: [PATCH] Update Requirements section to give more details on which platforms/databases have been tested. git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@192397 c90b9560-bf6c-de11-be94-00142212c4b1 --- reference/sdodasrel/reference.xml | 58 +++++++++++++++++++++---------- 1 file changed, 40 insertions(+), 18 deletions(-) diff --git a/reference/sdodasrel/reference.xml b/reference/sdodasrel/reference.xml index 9c83e9220a..86f36ac5b1 100644 --- a/reference/sdodasrel/reference.xml +++ b/reference/sdodasrel/reference.xml @@ -1,5 +1,5 @@ - + SDO Relational Data Access Service Functions @@ -171,23 +171,45 @@ require_once 'SDO/DAS/Relational.php'; The Relational DAS uses PDO to access the relational database, - and so should run with a variety of different relational databases, - but at the time of writing has only been tested with MySQL 4.1.7 - on Windows and Linux, DB2 8.2 Personal Edition on Windows and - DB2 8.2 Personal Developer's Edition (the Developer's Edition - contains the include files which are needed when PHP is configured - with the - --with-pdo-odbc=ibm-db2 - option. - On Windows it operates correctly with the php_pdo_mysql and - php_pdo_odbc drivers, for MySQL and DB2 respectively, - that come with the pre-built binaries in PHP 5.1.0b3. - On Linux it is necessary to have the most up-to-date PDO - driver for MySQL. It may be necessary to uninstall the usual - driver that would have come from PECL (using - pear uninstall pdo_mysql - ) and to enable pdo_mysql when configuring PHP, in order to pick up - the recent version built in to PHP. + and so should run with a variety of different relational databases. + At the time of writing it has been tested in the following configurations + + + + MySQL 4.1.17, on Windows. + The Relational DAS operates correctly with the php_pdo_mysql + driver that comes with the pre-built binaries for PHP 5.1.0b3. + + + + + MySQL 4.1.17, on Linux. It is necessary to have the most up-to-date + PDO driver for MySQL, which comes built in to PHP 5.1.0b3. + It may be necessary to uninstall the usual driver that would have + come from PECL using + pear uninstall pdo_mysql + . You will need to configure PHP with the + --with-pdo-mysql option. + + + + + DB2 8.2 Personal Edition, on Windows. + The Relational DAS operates correctly with the + php_pdo_odbc driver that comes with the pre-built binaries for + PHP 5.1.0b3. + + + + + DB2 8.2 Personal Developer's Edition, on Linux. + The Developer's Edition is needed because it + contains the include files needed when PHP is configured + and built. You will need to configure PHP with the + --with-pdo-odbc=ibm-db2 option. + + +