明輝手游網(wǎng)中心:是一個(gè)免費(fèi)提供流行視頻軟件教程、在線學(xué)習(xí)分享的學(xué)習(xí)平臺(tái)!

用PHP4訪問Oracle815 

[摘要]在Windosws 2000 Server 上用PHP4訪問Oracle815 系統(tǒng)環(huán)境: 1、操作系統(tǒng):Windows 2000 Server 2、數(shù)據(jù)庫(kù): Oracle 8i R2 (8.1.6) for NT 企業(yè)版 3、安裝路徑:D:ORACLE 安裝配置PHP4: 第一步,解開...
在Windosws 2000 Server 上用PHP4訪問Oracle815
   
系統(tǒng)環(huán)境:  
1、操作系統(tǒng):Windows 2000 Server
2、數(shù)據(jù)庫(kù): Oracle 8i R2 (8.1.6) for NT 企業(yè)版
3、安裝路徑:D:ORACLE

安裝配置PHP4:  
第一步,解開php-4.0.3-Win32.zip壓縮包,把它放在C:PHP下面。

第二步,把C:PHP下面的php.ini-optimized文件復(fù)制到C:WINNT目錄下,并改名成php.ini。

        修改php.ini文件:   
          extension_dir = c:php  

          extension=php_oci8.dll       去掉前面的“;”號(hào)  

          extension=php_oracle.dll     去掉前面的“;”號(hào)  

          [browscap] browscap = c:phpbrowscapbrowscap.ini      去掉browscap項(xiàng)前面的“;”號(hào)

第三步,把C:PHPphp4ts.dll復(fù)制到C:WINNTsystem32目錄下。

第四步,啟動(dòng)IIS管理程序。

        開始—設(shè)置—控制面板—管理工具—Internet服務(wù)管理器 在“默認(rèn)Web站點(diǎn)”上點(diǎn)鼠標(biāo)右鍵,選屬性,  
        這時(shí)系統(tǒng)彈出“默認(rèn)Web站點(diǎn)屬性”窗口:

        應(yīng)用程序名輸入c:phpphp.exe %s %s 點(diǎn)擊配置:
        點(diǎn)擊添加:  

第五步,在“默認(rèn)Web站點(diǎn)屬性”窗口上點(diǎn)取“ISAPI篩選器”標(biāo)簽,點(diǎn)擊“添加”按鈕,  

        在彈出的“篩選器屬性”窗口的“篩選器名稱”中輸入“PHP”,  

        在“可執(zhí)行文件”中輸入“C:phpsapiphp4isapi.dll”,確定。

  

第六步,REGEDIT,啟動(dòng)注冊(cè)表編輯器 找到:

          HKEY_LOCAL_MACHINESYSTEMCurrentControlSetServicesW3SVCParametersScript Map。  

        新建一字符串:輸入名稱.php

  

第七步,回到命令行窗口,輸入“net stop iisadmin”命令,終止IIS服務(wù)。

        系統(tǒng)會(huì)問你是否要將相關(guān)的服務(wù)也停止,答是。

第八步,輸入“net start w3svc”命令,重新啟動(dòng)IIS服務(wù)。

第九步,把c:phpextensions下的php_oci8.dll、php_oracle.dll兩個(gè)文件拷貝到c:php下

1、寫第一個(gè)連接Oracle的代碼test.php   
<?php

$handle = ora_plogon("test@ora815", "gdj") or die; /* 創(chuàng)建連接oracle的句柄*/
$cursor = ora_open($handle);                       /* 打開它并賦給一個(gè)游標(biāo) */
ora_commitoff($handle);

$query = "SELECT * FROM rate";                     /* 定義一個(gè)查詢 */
ora_parse($cursor, $query) or die;                 /* 把這個(gè)查詢賦給游標(biāo) */
ora_exec($cursor);                                 /* 運(yùn)行游標(biāo),也即運(yùn)行這個(gè)查詢*/

echo "<HTML><PRE>n";
echo "$querynn";
$numcols = 0;
while(ora_fetch($cursor)) {                        /* 將 $cursor中存著查詢結(jié)果 echo */  
$numcols = ora_numcols($cursor);
for ($column=0; $column < $numcols; $column++) {
$data = trim(ora_getcolumn($cursor, $column));
if($data == "") $data = "NULL";
echo "$datat";
}
echo "n";
}
$numrows = ora_numrows($cursor);
echo "nROWS RETURNED: $numrowsn";
echo "</PRE></HTML>n";

ora_close($cursor);

?>




標(biāo)簽:用PHP4訪問Oracle815