//初始化 //參數:用戶名、密碼、數據庫 function InitDB($user,$passWord,$db){ if (PHP_OS == "WINNT") $dllid=dl("php3_oci80.dll"); $this->LinkId = OCILogon($user,$password,$db); }
//斷開 function Destroy(){ OCILogoff($this->LinkId); }
//------------------------- // Set 函數 //-------------------------
//設置顯示條件 //如:where id='$id' order by id desc //要求是字串,符合SQL語法(本字串將加在SQL語句后)
function SetCondition($s){ $this->Condition=$s; }
//設置每組的顯示個數 function SetNumGroup($pg){ $this->PGroup=$pg; } //設置首頁,如無則為NULL function SetFirstPage($fn){ $this->TheFirstPage=$fn; } //設置起始記錄,如無則取默認0 function SetStartRecord($org){ $this->StartRec=$org; }