bool bind(resource &$stmt,
string &$var,
optional int $size=4000,
optional string $type=false,
optional string $name=false,
optional bool $isOutput=false
)
The Oracle Only method allows for fast updating of records.
$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); }