felipe Fri, 03 Dec 2010 23:25:27 +0000 Revision: http://svn.php.net/viewvc?view=revision&revision=305959
Log: - Fixed test Changed paths: U php/php-src/branches/PHP_5_3/ext/pdo/tests/pdo_021.phpt U php/php-src/trunk/ext/pdo/tests/pdo_021.phpt Modified: php/php-src/branches/PHP_5_3/ext/pdo/tests/pdo_021.phpt =================================================================== --- php/php-src/branches/PHP_5_3/ext/pdo/tests/pdo_021.phpt 2010-12-03 22:58:21 UTC (rev 305958) +++ php/php-src/branches/PHP_5_3/ext/pdo/tests/pdo_021.phpt 2010-12-03 23:25:27 UTC (rev 305959) @@ -41,8 +41,6 @@ $num = $select->fetchColumn(); echo 'There are ' . $num . " rows in the table.\n"; -$select->closeCursor(); - // Insert using named parameters $stmt2 = $db->prepare("INSERT INTO test VALUES(:first, :second, :third)"); foreach ($data as $row) { Modified: php/php-src/trunk/ext/pdo/tests/pdo_021.phpt =================================================================== --- php/php-src/trunk/ext/pdo/tests/pdo_021.phpt 2010-12-03 22:58:21 UTC (rev 305958) +++ php/php-src/trunk/ext/pdo/tests/pdo_021.phpt 2010-12-03 23:25:27 UTC (rev 305959) @@ -41,8 +41,6 @@ $num = $select->fetchColumn(); echo 'There are ' . $num . " rows in the table.\n"; -$select->closeCursor(); - // Insert using named parameters $stmt2 = $db->prepare("INSERT INTO test VALUES(:first, :second, :third)"); foreach ($data as $row) {
-- PHP CVS Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php