ID: 39759
User updated by: mike at we11er dot co dot uk
Reported By: mike at we11er dot co dot uk
-Status: Feedback
+Status: Open
Bug Type: PDO related
Operating System: Windows XP
PHP Version: 5.2.0
New Comment:
Well it would seem buffered queries aren't on for some reason, but if I
use
$this->setAttribute(PDO::MYSQL_ATTR_USE_BUFFERED_QUERY, TRUE);
I still get errors.
Previous Comments:
------------------------------------------------------------------------
[2006-12-06 18:10:21] [EMAIL PROTECTED]
Latest version enabled buffered queries by default so your
code will work.
------------------------------------------------------------------------
[2006-12-06 18:03:45] mike at we11er dot co dot uk
I'm sorry to reopen again, but I think the "optional feature not
implemented" is just wrong. That would imply that stored procedures are
an optional feature. If so, then that is unnacceptable.
I have some code to reproduce the error:
<?php
/*
CREATE PROCEDURE Test()
BEGIN
SELECT 0;
SELECT 1;
END
*/
class DBWriter extends PDO
{
public function __construct()
{
try
{
parent::__construct("mysql:host=localhost;dbname=test","user",
"password");
$this->setAttribute(PDO::ATTR_ERRMODE, PDO::ERRMODE_EXCEPTION);
}
catch (PDOException $e) {
throw new Exception("Failed to connect: " .
$e->getMessage());
}
}
}
$db = new DBWriter();
$stmt = $db->prepare("CALL Test()");
$stmt->execute();
$stmt->fetchAll();
// run the query again and we get an error "Cannot execute queries
while other unbuffered queries are active."
// but we can't fetch all results from the previous query because
nextRowset isn't defined
$stmt->execute();
?>
I just want the status of this to be elevated - I think "feature
request" is just plain wrong. I want to hear an official opinion on
this...
------------------------------------------------------------------------
[2006-12-06 17:55:17] [EMAIL PROTECTED]
The error message "Optional feature not implemented" means that the
feature is optional and it's not implemented yet.
We already have a request for this feature, no need for another one,
thank you.
------------------------------------------------------------------------
[2006-12-06 17:46:42] mike at we11er dot co dot uk
I'm reopening this because it isn't a feature request, it's a /bug/.
You cannot use stored procedures. That is a bug! And the bug
report/feature request you mention has been idling for months.
This is an important issue and I have yet to hear any acknowledgement
that this is an issue worth fixing. It's getting rather annoying now.
------------------------------------------------------------------------
[2006-12-06 17:14:35] [EMAIL PROTECTED]
Duplicate of feature request #38842.
------------------------------------------------------------------------
The remainder of the comments for this report are too long. To view
the rest of the comments, please view the bug report online at
http://bugs.php.net/39759
--
Edit this bug report at http://bugs.php.net/?id=39759&edit=1