php 與 oracle11g 基本操作

2021-06-14 15:38:31 字數 1061 閱讀 1737

資料表,sequence,觸發器建立:

<?php

$conn = oci_connect('scott', 'tiger', '192.168.1.244:1521/orcl'); // 建立連線

if(!$conn)

//查詢資料

$query = 'select * from example order by id desc';

$rs = oci_parse($conn,$query);

if(!$rs)

$result = oci_execute($rs,oci_default);

if(!$result)

//列印執行結果

print '';

while($row = oci_fetch_array($rs, oci_return_nulls))

print '';

}print '';

//插入資料方式一:

$query = "insert into example(name,phone,address)values('1111','22222','444444')";

$rs = oci_parse($conn,$query);

$t1 = xdebug_time_index();

for($i=0;$i<1;$i++)

$t2 = xdebug_time_index();

print ($t2-$t1);

//插入資料方式二:

$query = "insert into example(name,phone,address)values('1111','22222','444444')";

$rs = oci_parse($conn,$query);

$result = oci_execute($rs,oci_default); //預設方式直接上傳

print_r($result);

if(!$result)

oci_commit($conn);

oci_close($conn);

?>

oracle 11g 基本操作

以下均為在 命令下執行 1 登入 win r 開啟 cmd 命令介面。2 先用dba登陸 sqlplus as sysdba 3 再連線庫 conn 使用者 密碼 sid 例如 conn system exer exer 4 修改密碼 alter user 使用者 identified by 密碼 ...

解除安裝oracle 11g

估計和以前的版本一樣,先刪除物理檔案,然後再刪除登錄檔的檔案。大致方法如下 1 刪除物理檔案 1 oracle安裝檔案。2 系統目錄下,program files檔案下的oracle檔案 2 登錄檔中大概有這麼幾個地方 hkey local machine software 刪除oracle目錄 h...

oracle 11G 解除安裝

oracle deinstall deconfig tool start check operation start 安裝檢查配置開始 選擇進行解除安裝的 oracle 主目錄型別為 sidb 檢查主產品清單位置是否存在 c program files oracle inventory 安裝檢查配置...