php oci8 small test、oci8 small test_PHP チュートリアル

WBOY
リリース: 2016-07-13 09:50:25
オリジナル
849 人が閲覧しました

php oci8 小试、oci8 小试

Oracle_db.class.php

class Oracle_db{
public $link;
public function __construct(){
$this->link=$this->connect();
if(!$this->link){
echo "连接失败";
exit;
}
}
public function connect(){
oci_connect('demo','demo','localhost/xe','AL 32UTF8');
}
パブリック関数の実行($sql){
$result=false;
$stid=oci_parse($this->link,$sql);
if($stid){
$result=oci_execute($stid);
}
配列を返す($stid,$result);
}
public function fetch_assoc($stid){
return oci_fetch_assoc($stid);
}

public function fetch_one($stid){
$arr=$this- >fetch_assoc( $stid);
$this->free($stid);
return $arr;
}
public function fetch_all($stid){
$arr=array();
while($row=$this-> ;fetch_assoc($stid)){
$arr[]=$row;
}
$this->free($stid);
return $arr;
}
num_rows($stm t){
oci_num_rows を返す($stmt);
}
public function error(){
return oci_error($this->link);
}
public function free($stid){
return oci_free_statement($stid); 
}
public functionserver_version(){
return oci_server_version($this->link);
}
public function client_version(){
return oci_client_version();
}
public function __destruct(){
return oci_close($ this->link);
}
//
}

www.bkjia.comtru​​ehttp://www.bkjia.com/PHPjc/1017651.html技術記事 php oci8 小试,oci8小试 Oracle_db.class.php ?php class Oracle_db{ public $link;パブリック関数 __construct(){ $this-link=$this-connect(); if(!$this-link){ echo "连接失败"...
関連ラベル:
ソース:php.cn
このウェブサイトの声明
この記事の内容はネチズンが自主的に寄稿したものであり、著作権は原著者に帰属します。このサイトは、それに相当する法的責任を負いません。盗作または侵害の疑いのあるコンテンツを見つけた場合は、admin@php.cn までご連絡ください。
最新の問題
人気のチュートリアル
詳細>
最新のダウンロード
詳細>
ウェブエフェクト
公式サイト
サイト素材
フロントエンドテンプレート