本篇文章給大家分享的是有關(guān)php連接不上orcle的問(wèn)題,小編覺(jué)得挺實(shí)用的,因此分享給大家學(xué)習(xí),希望大家閱讀完這篇文章后可以有所收獲,話不多說(shuō),跟著小編一起來(lái)看看吧。
創(chuàng)新互聯(lián)專(zhuān)注為客戶提供全方位的互聯(lián)網(wǎng)綜合服務(wù),包含不限于成都網(wǎng)站設(shè)計(jì)、成都做網(wǎng)站、偃師網(wǎng)絡(luò)推廣、小程序定制開(kāi)發(fā)、偃師網(wǎng)絡(luò)營(yíng)銷(xiāo)、偃師企業(yè)策劃、偃師品牌公關(guān)、搜索引擎seo、人物專(zhuān)訪、企業(yè)宣傳片、企業(yè)代運(yùn)營(yíng)等,從售前售中售后,我們都將竭誠(chéng)為您服務(wù),您的肯定,是我們最大的嘉獎(jiǎng);創(chuàng)新互聯(lián)為所有大學(xué)生創(chuàng)業(yè)者提供偃師建站搭建服務(wù),24小時(shí)服務(wù)熱線:18980820575,官方網(wǎng)址:jinyejixie.com
在php.ini中打開(kāi)extension=php_oci8擴(kuò)展,重啟服務(wù)。
將php/ext目錄下的php_oci8.dll文件拷貝到system32目錄下,安裝 Oracle9i客戶端精簡(jiǎn)版 后重啟電腦
配置:
$config = array ( 'dbconfig' => array ( 'db_host_name' => '192.168.2.197/orcl', 'db_user_name' => 'zbkf', 'db_password' => 'zbkf', ), );
查詢:
//返回值 $arr_result = array(); $arr_result['result'] = 'false'; //true false 為黑名單 $arr_result['callerid'] = $callerid; //取數(shù)據(jù)庫(kù)參數(shù) $db_host_name=$config['dbconfig']['db_host_name']; //'localhost/ORCL'' $db_user_name=$config['dbconfig']['db_user_name'];//'asgr' $db_pwd=$config['dbconfig']['db_password']; //'asgr' //連接Oracle $conn = oci_connect($db_user_name,$db_pwd,$db_host_name);//oci_connect('asgr','asgr','localhost/ORCL'); if (!$conn) { $e = oci_error(); //print htmlentities($e['message']); //WriteLog("連接Oracle時(shí)出錯(cuò),oci_connect(".$db_user_name.",".$db_pwd.",".$db_host_name.") ".htmlentities($e['message'])); $arr_result['result'] = 'false'; echo json_encode($arr_result); //默認(rèn)為不是黑名單 return; } else { //echo("連接成功!"); //$select = 'SELECT BL_TEL FROM CC_BLACKLIST'; // 查詢語(yǔ)句 $select = "Select count(BL_Tel) from CC_BlackList where BL_Tel like '%" . $callerid . "%' and BL_SFQY='0' "; //WriteLog($select); $result_rows = oci_parse($conn, $select); // 配置SQL語(yǔ)句,執(zhí)行SQL $row_count = oci_execute($result_rows, OCI_DEFAULT); // 行數(shù) OCI_DEFAULT表示不要自動(dòng)commit //echo($row_count); if(!$row_count) { //沒(méi)有行 $e = oci_error($result_rows); //echo htmlentities($e['message']); //WriteLog("查詢時(shí)出錯(cuò)或沒(méi)有行!,oci_connect(".$db_user_name.",".$db_pwd.",".$db_host_name.") ". $select." ".htmlentities($e['message'])); $arr_result['result'] = 'false'; echo json_encode($arr_result); //默認(rèn)為不是黑名單 } /* //取每行每列值 while($row = oci_fetch_array($result_rows, OCI_RETURN_NULLS)) { if($row[0]==$callerid){ $arr_result['result']='true'; echo json_encode($arr_result); //是黑名單 exit; } } */ $count=0; while($row = oci_fetch_array($result_rows, OCI_RETURN_NULLS)) { $count=$row[0]; break; } //WriteLog($count); if($count>=1){ $arr_result['result']='true'; } else { $arr_result['result']='false'; } echo json_encode($arr_result); //默認(rèn)為不是黑名單 }
以上就是php連接不上orcle的問(wèn)題,小編相信有部分知識(shí)點(diǎn)可能是我們?nèi)粘9ぷ鲿?huì)見(jiàn)到或用到的。希望你能通過(guò)這篇文章學(xué)到更多知識(shí)。更多詳情敬請(qǐng)關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道。
本文標(biāo)題:php連接不上orcle的問(wèn)題
本文網(wǎng)址:http://jinyejixie.com/article24/jojpje.html
成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供ChatGPT、搜索引擎優(yōu)化、移動(dòng)網(wǎng)站建設(shè)、虛擬主機(jī)、網(wǎng)站收錄、品牌網(wǎng)站設(shè)計(jì)
聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請(qǐng)盡快告知,我們將會(huì)在第一時(shí)間刪除。文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如需處理請(qǐng)聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時(shí)需注明來(lái)源: 創(chuàng)新互聯(lián)