|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2006-04-03 10:02 UTC] bastian at pixelfashion dot net
[2006-04-03 13:04 UTC] wez@php.net
[2006-04-04 02:51 UTC] bastian at pixelfashion dot net
[2006-04-06 04:37 UTC] bastian at pixelfashion dot net
[2006-04-09 01:40 UTC] wez@php.net
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Wed Oct 29 20:00:01 2025 UTC |
Description: ------------ Hi, some correction first: i uses PHP 5.1.2, but i can't find this under the above PHP version list. Reproduce code: --------------- PHP-Code: $db = new PDO("oci:dbname=dev", 'devuser', 'devpasswd'); $db->setAttribute (PDO::ATTR_ERRMODE, PDO::ERRMODE_WARNING); $qry = "BEGIN test.pkg_test.test(?); END;"; $stmt = $db->prepare($qry); $hw = "Hello World"; $stmt->bindParam('1', $hw, PDO::PARAM_STR|PDO::PARAM_INPUT_OUTPUT, 255); $stmt->execute(); print_r($stmt->errorInfo()); Oracle-Stored-Procedure (Schema: test, Package: pkg_test): PROCEDURE TEST( p_varchar2 IN OUT varchar2 ) AS BEGIN p_varchar2 := 'Joman'; END; Expected result: ---------------- Got a blank screen (= GPF).