
|
NAME="GENERATOR"
CONTENT="Modular DocBook HTML Stylesheet Version 1.7">ifx_fieldtypes (PHP 3>= 3.0.3, PHP 4 ) ifx_fieldtypes -- Informix SQL フィールドã®ãƒªã‚¹ãƒˆ 説明array ifx_fieldtypes ( int result_id)
result_id ã®ã‚¯ã‚¨ãƒªãƒ¼ã«ã¤ã„ã¦ãƒ•ィールドåã‚’
ã‚ーã¨ã—ã€SQL フィールド型をデータã¨ã—ãŸé€£æƒ³é…列を返ã—ã¾ã™ã€‚エラー
ã®å ´åˆã«FALSEã‚’è¿”ã—ã¾ã™ã€‚
例 1フィールドåãŠã‚ˆã³ SQL フィールド型 $types = ifx_fieldtypes ($resultid);
if (! isset ($types)) {
... ã‚¨ãƒ©ãƒ¼å‡¦ç† ...
}
for ($i = 0; $i < count($types); $i++) {
$fname = key($types);
printf("%s :\t type = %s\n", $fname, $types[$fname]);
next($types);
} |
|
|