ID:               38643
 Updated by:       [EMAIL PROTECTED]
 Reported By:      chris dot vigelius at gmx dot net
-Status:           Open
+Status:           Feedback
 Bug Type:         PDO related
 Operating System: Linux
 PHP Version:      5.1.5
 New Comment:

Thank you for this bug report. To properly diagnose the problem, we
need a short but complete example script to be able to reproduce
this bug ourselves. 

A proper reproducing script starts with <?php and ends with ?>,
is max. 10-20 lines long and does not require any external 
resources such as databases, etc. If the script requires a 
database to demonstrate the issue, please make sure it creates 
all necessary tables, stored procedures etc.

Please avoid embedding huge scripts into the report.




Previous Comments:
------------------------------------------------------------------------

[2006-08-30 11:11:15] chris dot vigelius at gmx dot net

the current snapshot does NOT solve the problem - there are 
still all rows returned.

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

[2006-08-29 20:45:43] [EMAIL PROTECTED]

Please try using this CVS snapshot:

  http://snaps.php.net/php5.2-latest.tar.gz
 
For Windows:
 
  http://snaps.php.net/win32/php5.2-win32-latest.zip



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

[2006-08-29 15:18:47] chris dot vigelius at gmx dot net

Description:
------------
If a parameter appears more than once in a parametrized query,
unexpected behaviour occurs


Reproduce code:
---------------
$dbh = new PDO(...)
$stmt = $dbh->prepare("SELECT * FROM user WHERE name=:user OR
email=:user");
$stmt->execute(array(':user' => 'franz'));

Expected result:
----------------
only the rows are returned where either name or email are set to
'franz'

Actual result:
--------------
always all rows of the table are returned, which is clearly not what
one would expect


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


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

Reply via email to