Oracle_db.class.php
class Oracle_db{
public $link;
public function __construct(){ if(!$ this-> link){
echo "連線失敗";
退出;
return oci_connect('demo','demo','localhost/xe',' AL32UTF8') ;
}
公用函數執行($sql){
$result=false;
$stid=oci_parse($this->link,$ $result=oci_execute($斯蒂德);
}
return array($stid,$result);
}
公用函數fetch_assoc($.id){
公用函數fetch_one($stid){
$arr= $this- >fetch_assoc($stid);
$this->free($stid);
返回$arr;
}
;
while( $row=$this ->fetch_assoc($stid)){
$arr[]=$row;
}
}
公用函數行( $stmt){
return oci_num_rows ($stmt);
}
公用函數錯誤(){
return oci_error($this->link);
)) _statement($stid );
}
公用程式server_version (){
return oci_server_version($this->link);
}
公用函數client_version(){ ) 公共函數__destruct(){
返回oci_close($此->連結);
}
//
}
以上就介紹了php oci8小試,包含了方面的內容,希望對PHP教學有興趣的朋友有幫助。