function ora bind


Ora_BindPHP ManualPrevNextOra_BindOra_Bind -- bind a PHP variable to an Oracle parameterDescriptionint ora_bind(int cursor, string PHP variable name, string SQL parameter name, int length, int [type]); Returns true if the bind succeeds, otherwise false. Details about the error can be retrieved using the ora_error() and ora_errorcode() functions. This function binds the named PHP variable with a SQL parameter. The SQL parameter must be in the form ":name". With the optional type parameter, you can define whether the SQL parameter is an in/out (0, default), in (1) or out (2) parameter. As of PHP 3.0.1, you can use the constants ORA_BIND_INOUT, ORA_BIND_IN and ORA_BIND_OUT instead of the numbers. ora_bind must be called after ora_parse() and before ora_exec(). Input values can be given by assignment to the bound PHP variables, after calling ora_exec() the bound PHP variables contain the output values if available. 1  2 <?php 3 ora_parse($curs, "declare tmp INTEGER; begin tmp := :in; :out := tmp; :x := 7.77; end;"); 4 ora_bind($curs, "result", ":x", $len, 2); 5 ora_bind($curs, "input", ":in", 5, 1); 6 ora_bind($curs, "output", ":out", 5, 2); 7 $input = 765; 8 ora_exec($curs); 9 echo "Result: $result<BR>Out: $output<BR>In: $input"; 10 ?> 11 PrevHomeNextOracle functionsUpOra_Close

Wyszukiwarka

Podobne podstrony:
function ora bind
function ora bind
function ldap bind
function ora do
function ora close
function socket bind
function ora close
function ora commiton
function ora commitoff
function mssql bind
function ora errorcode
function ora getcolumn
function ora exec

więcej podobnych podstron