php.net |  support |  documentation |  report a bug |  advanced search |  search howto |  statistics |  random bug |  login
Bug #36643 error when i call execute method with param
Submitted: 2006-03-07 12:52 UTC Modified: 2006-03-07 12:59 UTC
From: alien at mosfasad dot ru Assigned:
Status: Not a bug Package: PDO related
PHP Version: 5.1.2 OS: WIN2000
Private report: No CVE-ID: None
View Add Comment Developer Edit
Anyone can comment on a bug. Have a simpler test case? Does it work for you on a different platform? Let us know!
Just going to say 'Me too!'? Don't clutter the database with that please !
Your email address:
MUST BE VALID
Solve the problem:
27 + 47 = ?
Subscribe to this entry?

 
 [2006-03-07 12:52 UTC] alien at mosfasad dot ru
Description:
------------
when i insert or update table with bind variable, i get bad result =(.
All values of bind variables change to last bind variable =(
___
If i use method bindParam apache crush =(
____
i take last cvs version of php, but not happened  =(
____
Windows 2000 SP4 (5.00.2195)
Apache/2.0.52 (Win32) PHP/5.1.3-dev
PDO drivers       sqlite2, sqlite, oci
OCI8              $Revision: 1.269.2.10 $
_____
php_pdo_oci8.dll - Oracle (OCI) driver for PDO(5.1.3.3)
_____

Reproduce code:
---------------
$oPdo = new PDO('oci:dbname=dinv','I3','XXXXXX');
$oStat = $oPdo->prepare("INSERT INTO REGISTRY (name, value) VALUES (?, ?)");
$oStat->execute(array('test1','test2'));

Expected result:
----------------
Table REGISTRY has new row with values:
--  | name  | value
1   |	test2 | test2

Actual result:
--------------
Table REGISTRY has new row with values:
--  | name  | value
1   |	test1 | test2

Patches

Add a Patch

Pull Requests

Add a Pull Request

History

AllCommentsChangesGit/SVN commitsRelated reports
 [2006-03-07 12:59 UTC] tony2001@php.net
Duplicate of bug #36318.
 
PHP Copyright © 2001-2024 The PHP Group
All rights reserved.
Last updated: Thu Mar 28 16:01:29 2024 UTC