返回上一個錯誤

oci_error

(PHP 5, PHP 7, PHP 8, PECL OCI8 >= 1.1.0)

oci_error返回上一個錯誤

說明

oci_error(resource $source = ?): array

對於大多數錯誤,參數是最適合的資源控制代碼。對於 oci_connect()oci_new_connect()oci_pconnect() 的連線錯誤,不要傳遞參數。如果沒有發現錯誤,oci_error() 返回 falseoci_error() 以一個關聯陣列返回錯誤。在此陣列中,code 是 oracle 錯誤程式碼而 message 是 oracle 的錯誤字串。

注意: 自 PHP 4.3 起

offsetsqltext 也包括在返回的陣列中,用來指出錯誤發生的位置以及造成錯誤的原始的 SQL 文字。

示例 #1 連線錯誤后顯示 Oracle 錯誤資訊

$conn = @oci_connect("scott", "tiger", "mydb");
if (!$conn) {
  $e = oci_error();   // For oci_connect errors pass no handle
  echo htmlentities($e['message']);
}

示例 #2 語法解析錯誤后顯示 Oracle 錯誤資訊

$stmt = @oci_parse($conn, "select ' from dual");  // note mismatched quote
if (!$stmt) {
  $e = oci_error($conn);  // For oci_parse errors pass the connection handle
  echo htmlentities($e['message']);
}

示例 #3 執行錯誤后顯示 Oracle 錯誤資訊和出錯的語句

$r = oci_execute($stmt);
if (!$r) {
  $e = oci_error($stmt); // For oci_execute errors pass the statementhandle
  echo htmlentities($e['message']);
  echo "<pre>";
  echo htmlentities($e['sqltext']);
  printf("\n%".($e['offset']+1)."s", "^");
  echo "</pre>";
}

注意:

在 PHP 5.0.0 之前的版本必須使用 ocierror() 替代本函式。該函式名仍然可用,為向下相容作為 oci_error() 的別名。不過其已被廢棄,不推薦使用。

發佈留言

發佈留言必須填寫的電子郵件地址不會公開。 必填欄位標示為 *