PHP完全中文操作手冊

天地JPLOP | PHP首頁 | 函數索引
函數:OCIBindByName()

OCIBindByName

讓動態 SQL 可使用 PHP 變量。

語法: boolean OCIBindByName(int stmt, string ph_name, mixed &variable, int length, int [type]);

返回值: 布爾值

函數種類: 數據庫功能

內容說明

本函數用來定義指定的 PHP 變量,使其能供動態的 SQL 指令 (Oracle Placeholder) 使用。在大小寫的問題上要注意一下,因為 Oracle 數據庫中的字段名稱其實都是大寫的名字。參數 stmt 是經過 Oracle 解析 (OCIParse) 後的字符串指針。參數 ph_name 即為欲供動態 SQL 指令所使用的變量。參數 variable 前面一定要加 & 符號,表 PHP 變量位址。參數 length 為資料的長度,若設為 -1 則使用指定的 variable 資料最大值。參數 type 可省略,其值有 OCI_B_FILE (二進位文件)、OCI_B_CFILE (文字文件)、OCI_B_CLOB (文字 LOB)、OCI_B_BLOB (位 LOB) 及 OCI_B_ROWID (ROWID) 等數種。治募米 獾氖怯使用 Oracle 8 中特有的新資料類型 LOB/ROWID/BFILE 等時,需要先執行 OCINewDescriptor() 函數,同時必須要將 length 參數設成 -1。執行本函數成功則返回 true 值。

使用範例

這個範例是 thies@digicol.de 所提出的,它加入三筆資料到 emp 資料表中,並使用 ROWID 來更新資料。

<?php
$conn
= OCILogon("scott", "tiger");
$stmt = OCIParse($conn,"insert into emp (empno, ename) "."values (:empno,:ename) "."returning ROWID into :rid");
$data = array(1111 => "Larry", 2222 => "Bill", 3333 => "Jim");
$rowid = OCINewDescriptor($conn, OCI_D_ROWID);
OCIBindByName($stmt, ":empno", &$empno, 32);
OCIBindByName($stmt, ":ename", &$ename, 32);
OCIBindByName($stmt, ":rid", &$rowid, -1, OCI_B_ROWID);
$update = OCIParse($conn, "update emp set sal = :sal where ROWID = :rid");
OCIBindByName($update, ":rid", &$rowid, -1, OCI_B_ROWID);
OCIBindByName($update, ":sal", &$sal, 32);
$sal = 10000;
while (list(
$empno, $ename) = each($data)) {
OCIExecute($stmt);
OCIExecute($update);
}
$rowid->free();
OCIFreeStatement($update);
OCIFreeStatement($stmt);
$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);
/* 刪除剛加在 emp 資料表中的三筆資料 */
$stmt = OCIParse($conn, "delete from emp where empno in (1111,2222,3333)");
OCIExecute($stmt);
OCIFreeStatement($stmt);
OCILogoff($conn);
?>



整理: 夕垌菪姬 (天地JPLOP)

[ 上一頁 回主目錄 下一頁 ]
版權所有,天地JPLOP、爵堤亞(夕垌菪姬)。網頁背景音樂和各鍊結標題
及鍊結內容和文章小說,版面編排皆歸原權利人所有對本版面
有任何意見或指教,歡迎至論壇指教。