|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2004-11-01 07:56 UTC] derick@php.net
[2004-11-10 01:00 UTC] php-bugs at lists dot php dot net
|
|||||||||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Thu Oct 30 19:00:01 2025 UTC |
Description: ------------ hello, iam developing certain programs with php(version 5.0.2) which actually need interface with my database(oracle 8.1.5) which i does with PDO.Iam using wamp5 php5 apache1.3.31 version 1.3 as my webserver.Here i need to insert and get some value from database through program. My current problem is to insert atleast 2 or more rows at a time with bingvariables but iam getting some bug so please give some idea for it or solve my error please. Reproduce code: --------------- $stmt = $dbh->prepare("insert into test (name, value) values (:name, :value)"); $stmt->bindParam(':name', $name, PDO_PARAM_STR, 64); $stmt->bindParam(':value', $value, PDO_PARAM_STR, 64); $name = 'Foo'; $value = 'Bar'; $stmt->execute() or die("no insert"); // and another $name = 'Fu'; $value = 'Ba'; $stmt->execute() or die("no insert"); $stmt = null; Expected result: ---------------- i Expect both the foo and fu values to be inserted into my database table test. Actual result: -------------- but actually it is not inserting anything and i get a microsoft dialogue report sending error message relating a problem with apache.