v5:database:oracle:bind
bind
Syntax
bool bind(resource &$stmt, string &$var, optional int $size=4000, optional string $type=false, optional string $name=false, optional bool $isOutput=false )
Description
The Oracle Only method allows for fast updating of records.
Example
$stmt = $db->prepare("insert into table (col0, col1, col2) values (:0, :1, :2)"); $db->bind($stmt, $p1); $db->bind($stmt, $p2); $db->bind($stmt, $p3); for ($i = 0; $i < $max; $i++) { $p1 = ?; $p2 = ?; $p3 = ?; $db->Execute($stmt); }
v5/database/oracle/bind.txt · Last modified: 2016/01/17 01:54 by mnewnham