MYSQL_FIELD *mysql_fetch_fields(MYSQL_RES
*result)
説明
結果セットのすべての MYSQL_FIELD
構造体の配列を返します。各構造体には、結果セットに含まれる
1
つのカラムのフィールド定義が格納されています。
戻り値
結果セットに含まれるすべてのカラムの
MYSQL_FIELD
構造体の配列。
エラー
ありません。
例
unsigned int num_fields; unsigned int i; MYSQL_FIELD *fields; num_fields = mysql_num_fields(result); fields = mysql_fetch_fields(result); for(i = 0; i < num_fields; i++) { printf("Field %u is %s\n", i, fields[i].name); }
This is a translation of the MySQL Reference Manual that can be found at dev.mysql.com. The original Reference Manual is in English, and this translation is not necessarily as up to date as the English version.