|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2003-02-26 09:41 UTC] iliaa@php.net
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Mon Nov 03 14:00:01 2025 UTC |
I use the code below to get a CHAR from a stored procedure. My system is PHP4+DB2+LINUX. I have heard that php just support input parameters to stored procedures. I need to know how to get output parameters if is possible. =========================================== $result=odbc_prepare($conn,"{CALL DSMTD.S6S006(?,?)}"); $par[0]=$pim.$num_rand; $par[1]=' '; odbc_execute($result,&$par); print_r($par); ============================================ Thanks, Renato Preti