PHP 8.3.4 Released!

oci_field_type

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

oci_field_typeフィールドのデータ型の名前を返す

説明

oci_field_type(resource $statement, string|int $column): string|int|false

フィールドのデータ型の名前を返します。

パラメータ

statement

有効な OCI ステートメント ID。

column

フィールド番号 (1 から始まる) あるいは名前のいずれか。

戻り値

フィールドのデータ型を表す文字列または数値を返します。 失敗した場合に false を返します

例1 oci_field_type() の例

<?php

// 以下のテーブルを用意します
// CREATE TABLE mytab (number_col NUMBER, varchar2_col varchar2(1),
// clob_col CLOB, date_col DATE);

$conn = oci_connect("hr", "hrpwd", "localhost/XE");
if (!
$conn) {
$m = oci_error();
trigger_error(htmlentities($m['message']), E_USER_ERROR);
}

$stid = oci_parse($conn, "SELECT * FROM mytab");
oci_execute($stid, OCI_DESCRIBE_ONLY); // 行をフェッチしない場合は OCI_DESCRIBE_ONLY を使います

echo "<table border=\"1\">";
echo
"<tr>";
echo
"<th>名前</th>";
echo
"<th>型</th>";
echo
"<th>長さ</th>";
echo
"</tr>\n";

$ncols = oci_num_fields($stid);

for (
$i = 1; $i <= $ncols; $i++) {
$column_name = oci_field_name($stid, $i);
$column_type = oci_field_type($stid, $i);
$column_size = oci_field_size($stid, $i);

echo
"<tr>";
echo
"<td>$column_name</td>";
echo
"<td>$column_type</td>";
echo
"<td>$column_size</td>";
echo
"</tr>\n";
}

echo
"</table>\n";

// 出力は
// 名前 型 長さ
// NUMBER_COL NUMBER 22
// VARCHAR2_COL VARCHAR2 1
// CLOB_COL CLOB 4000
// DATE_COL DATE 7

oci_free_statement($stid);
oci_close($conn);

?>

参考

add a note

User Contributed Notes

There are no user contributed notes for this page.
To Top