Edit report at http://bugs.php.net/bug.php?id=52745&edit=1

 ID:                 52745
 Updated by:         and...@php.net
 Reported by:        and...@php.net
 Summary:            Binding params doesn't work when selecting a date
                     inside a CASE-WHEN
-Status:             Open
+Status:             Closed
 Type:               Bug
 Package:            MySQLi related
 Operating System:   all
 PHP Version:        5.3.3
-Assigned To:        
+Assigned To:        mysql
 Block user comment: N

 New Comment:

The fix will appear in 5.3.4


Previous Comments:
------------------------------------------------------------------------
[2010-08-30 20:12:18] and...@php.net

Description:
------------
This is MySQL Bug #49406 Binding params doesn't work when selecting a
date inside a CASE-WHEN



Description:

When querying a date field (must be type "date"!) inside a CASE-WHEN
block, the

result-binding fails (does return only empty or incorrect values for all
selected

fields), when using the prepare()/execute() API-functions. When using
the query()

API-function instead, it works as expected.



Sample query:



SELECT CASE

  WHEN 0 THEN CAST('2009-12-03' AS DATE)

  ELSE CAST('2009-12-03' AS DATE)

END



When skipping the CASE-WHEN and selecting the ELSE-value directly, it
works always as

expected (with both API-functions):



SELECT CAST('2009-12-03' AS DATE)



In summary, this three conditions must be true, to reproduce the
problem:

- Result-parameter binding using bind_result() must be used

- one selected column using CASE-WHEN

- the fields inside this CASE-WHEN must be from type date



How to repeat:

I reproduced this with PHP mysqli client, but I guess the root of the
problem is

independent from the client:



<?php



$query = 'SELECT

CASE

  WHEN 0 THEN CAST(\'2009-12-03\' AS DATE)

  ELSE CAST(\'2009-12-03\' AS DATE)

END';



$dbMysqli = new mysqli('host', 'username', 'password');



// via mysqli::query:

$result = $dbMysqli->query($query);

$rowViaMysqli = $result->fetch_row();

$valueViaMysqli = $rowViaMysqli[0];



echo "Fetched via mysqli::query():\n";

var_dump($valueViaMysqli);



// Always correct output:

// output: string(10) "2009-12-03"



// via mysqli::prepare/execute:

$stmt = $dbMysqli->prepare($query);

$stmt->execute();

$stmt->store_result();

$valueViaMysqli = null;

$stmt->bind_result($valueViaMysqli);

$stmt->fetch();



echo "\nFetched via
mysqli::prepare/execute/store_result/bind_result/fetch:\n";

var_dump($valueViaMysqli);



// Different output on different clients/servers, but always wrong:

// output on PHP 5.2/MySQL 5.1.37: null

// output on PHP 5.3/MySQL 5.1.38: string(11) "12338-48-57"





------------------------------------------------------------------------



-- 
Edit this bug report at http://bugs.php.net/bug.php?id=52745&edit=1

Reply via email to