--TEST--
MySQL PDO:query() vs. PDO::prepare() and MySQL error 2050
--SKIPIF--
<?php
require_once(dirname(__FILE__) . DIRECTORY_SEPARATOR 'skipif.inc');
require_once(
dirname(__FILE__) . DIRECTORY_SEPARATOR 'mysql_pdo_test.inc');
MySQLPDOTest::skip();
$db MySQLPDOTest::factory();
if (
MYSQLPDOTest::isPDOMySQLnd())
    die(
"skip libmysql only test");
?>
--FILE--
<?php
    
require_once(dirname(__FILE__) . DIRECTORY_SEPARATOR 'mysql_pdo_test.inc');
    
$db MySQLPDOTest::factory();

    try {

        
printf("Native PS...\n");
        
$db->setAttribute(PDO::MYSQL_ATTR_DIRECT_QUERY0);
        if (
!= $db->getAttribute(PDO::MYSQL_ATTR_DIRECT_QUERY))
            
printf("[004] Unable to turn off emulated prepared statements\n");

        
printf("Buffered...\n");
        
MySQLPDOTest::createTestTable($db);
        
$db->setAttribute(PDO::MYSQL_ATTR_USE_BUFFERED_QUERYtrue);
        
$stmt $db->query('SELECT id, label FROM test WHERE id = 1');
        
var_dump($stmt->fetchAll(PDO::FETCH_ASSOC));
        
$stmt $db->query('SELECT id, label FROM test WHERE id = 1');
        
var_dump($stmt->fetchAll(PDO::FETCH_ASSOC));

        
printf("Unbuffered...\n");
        
MySQLPDOTest::createTestTable($db);
        
$db->setAttribute(PDO::MYSQL_ATTR_USE_BUFFERED_QUERYfalse);
        
$stmt $db->query('SELECT id, label FROM test WHERE id = 1');
        
var_dump($stmt->fetchAll(PDO::FETCH_ASSOC));
        
/*
        NOTE - this will cause an error and it OK
        When using unbuffered prepared statements MySQL expects you to
        fetch all data from the row before sending new data to the server.
        PDO::query() will prepare and execute a statement in one step.
        After the execution of PDO::query(), MySQL expects you to fetch
        the results from the line before sending new commands. However,
        PHP/PDO will send a CLOSE message as part of the PDO::query() call.

        The following happens:

            $stmt = PDO::query(<some query>)
                mysql_stmt_prepare()
                mysql_stmt_execute()

            $stmt->fetchAll()
                mysql_stmt_fetch()

            And now the right side of the expression will be executed first:
                $stmt = PDO::query(<some query>)
                    PDO::query(<some query>)
                        mysql_stmt_prepare
                        mysql_stmt_execute

            PHP continues at the left side of the expression:

                $stmt = PDO::query(<some query>)

                    What happens is that $stmt gets overwritten. The reference counter of the
                    zval representing the current value of $stmt. PDO gets a callback that
                    it has to free the resources associated with the zval representing the
                    current value of stmt:
                        mysql_stmt_close
                            ---> ERROR
                            ---> execute() has been send on the line, you are supposed to fetch
                            ---> you must not try to send a CLOSE after execute()
                            ---> Error: 2050 (CR_FETCH_CANCELED)
                            ---> Message: Row retrieval was canceled by mysql_stmt_close() call
                            ---> MySQL does its best to recover the line and cancels the retrieval

                    PHP proceeds and assigns the new statement object/zval obtained from
                    PDO to $stmt.

        Solutions:
                - use mysqlnd
                - use prepare() + execute() instead of query()
                - as there is no explicit close() in PDO, try unset($stmt) before the new assignment
                - fix PDO::query() [not the driver, fix PDO itself]
        */

        
$stmt $db->query('SELECT id, label FROM test WHERE id = 1');
        
var_dump($stmt->fetchAll(PDO::FETCH_ASSOC));

        
$stmt $db->prepare('SELECT id, label FROM test WHERE id = 1');
        
$stmt->execute();
        
var_dump($stmt->fetchAll(PDO::FETCH_ASSOC));

        
$stmt $db->prepare('SELECT id, label FROM test WHERE id = 1');
        
$stmt->execute();
        
var_dump($stmt->fetchAll(PDO::FETCH_ASSOC));

        unset(
$stmt);
        
$stmt $db->query('SELECT id, label FROM test WHERE id = 1');
        
var_dump($stmt->fetchAll(PDO::FETCH_ASSOC));

        unset(
$stmt);
        
$stmt $db->query('SELECT id, label FROM test WHERE id = 1');
        
var_dump($stmt->fetchAll(PDO::FETCH_ASSOC));

    } catch (
PDOException $e) {
        
printf("[001] %s [%s] %s\n",
            
$e->getMessage(), $db->errorCode(), implode(' '$db->errorInfo()));
    }

    print 
"done!";
?>
--CLEAN--
<?php
require dirname(__FILE__) . '/mysql_pdo_test.inc';
MySQLPDOTest::dropTestTable();
?>
--EXPECTF--
Native PS...
Buffered...
array(1) {
  [0]=>
  array(2) {
    [%u|b%"id"]=>
    %unicode|string%(1) "1"
    [%u|b%"label"]=>
    %unicode|string%(1) "a"
  }
}
array(1) {
  [0]=>
  array(2) {
    [%u|b%"id"]=>
    %unicode|string%(1) "1"
    [%u|b%"label"]=>
    %unicode|string%(1) "a"
  }
}
Unbuffered...

Warning: PDOStatement::fetchAll(): SQLSTATE[HY000]: General error: 2050  in %s on line %d
array(0) {
}

Warning: PDOStatement::fetchAll(): SQLSTATE[HY000]: General error: 2050  in %s on line %d
array(0) {
}
array(1) {
  [0]=>
  array(2) {
    [%u|b%"id"]=>
    %unicode|string%(1) "1"
    [%u|b%"label"]=>
    %unicode|string%(1) "a"
  }
}
array(1) {
  [0]=>
  array(2) {
    [%u|b%"id"]=>
    %unicode|string%(1) "1"
    [%u|b%"label"]=>
    %unicode|string%(1) "a"
  }
}
array(1) {
  [0]=>
  array(2) {
    [%u|b%"id"]=>
    %unicode|string%(1) "1"
    [%u|b%"label"]=>
    %unicode|string%(1) "a"
  }
}
array(1) {
  [0]=>
  array(2) {
    [%u|b%"id"]=>
    %unicode|string%(1) "1"
    [%u|b%"label"]=>
    %unicode|string%(1) "a"
  }
}
done!