Ingres 関数
PHP Manual

ingres_field_length

(PHP 4 >= 4.0.2, PHP 5 <= 5.0.5, PECL ingres >= 1.0.0)

ingres_field_lengthフィールド長を得る

説明

int ingres_field_length ( resource $result , int $index )

ingres_field_length() はフィールド長を返します。 フィールド長は、フィールドをサーバに保存する際に使用されるバイト数です。 詳細な情報については、Ingres OpenAPI User Guide の Appendix "Data Types" を参照ください。

注意: 関連する設定
実行時設定ingres.array_index_start を参照ください。

パラメータ

result

クエリ結果 ID。

index

index は、長さを取得したいカラムの番号です。 index の開始値と終了値は ingres.array_index_start の値に依存します。ingres.array_index_start0 の場合は、フィールド番号は 0 以上 ingres_num_fields() 未満でなければなりません。ingres.array_index_start1 の場合は、フィールド番号は 1 以上 ingres_num_fields() 以下でなければなりません。

返り値

フィールドの長さを返します。

参考


Ingres 関数
PHP Manual