ocibindbyname --
Bind a PHP variable to an Oracle Placeholder
Syntax
bool ocibindbyname ( resource stmt, string ph_name, mixed &variable [, int maxlength [, int type]] )
ocibindbyname() binds the PHP variable
variable to the Oracle placeholder
ph_name. Whether it will be used for
input or output will be determined run-time, and the necessary
storage space will be allocated. The
length parameter sets the maximum length
for the bind. If you set length to -1
ocibindbyname() will use the current length of
variable to set the maximum length.
If you need to bind an abstract Datatype (LOB/ROWID/BFILE) you
need to allocate it first using
ocinewdescriptor() function. The
length is not used for abstract Datatypes
and should be set to -1. The type variable
tells oracle, what kind of descriptor we want to use. Possible
values are: OCI_B_FILE (Binary-File), OCI_B_CFILE
(Character-File), OCI_B_CLOB (Character-LOB), OCI_B_BLOB
(Binary-LOB) and OCI_B_ROWID (ROWID).
Example 1. ocibindbyname() example
<?php /* OCIBindByPos example thies at thieso dot net (980221) inserts 3 records into emp, and uses the ROWID for updating the records just after the insert. */
$conn = OCILogon("scott", "tiger");
$stmt = OCIParse($conn, "insert into emp (empno, ename) " . "values (:empno,:ename) " . "returning ROWID into :rid");
$stmt = OCIParse($conn, "select * from emp where empno in (1111,2222,3333)"); OCIExecute($stmt); while (OCIFetchInto($stmt, &$arr, OCI_ASSOC)) { var_dump($arr); } OCIFreeStatement($stmt);
/* delete our "junk" from the emp table.... */ $stmt = OCIParse($conn, "delete from emp where empno in (1111,2222,3333)"); OCIExecute($stmt); OCIFreeStatement($stmt);
OCILogoff($conn); ?>
Note:
This function was renamed to oci_bind_by_name()
after PHP >= 5.0.0. For downward compatibility
ocibindbyname() can also be used.
This is deprecated, however.
Warning
It is a bad idea to use magic quotes and
ocibindbyname() simultaneously as no quoting
is needed on quoted variables and any quotes magically applied
will be written into your database as
ocibindbyname() is not able to distinguish
magically added quotings from those added by intention.
Php ocibindbyname Function syntax tag
ocibindbyname php code on this is provided for your study purpose, it will guide you to know how create and design a website using php. use it to practice and train your self online
Php ocibindbyname syntax tutorial
php tutorial guide and code design are for easy learning and programming. The code practice section provided at the top is for practising of this syntax. Use the code section up to practice your php programming online. Learning php is very easy, all you need is to use the examples on this site and practice them to perfect your skills.