pg_meta_data
テーブルからメタデータを取得する
&reftitle.description;
arrayfalsepg_meta_data
PgSql\Connectionconnection
stringtable_name
boolextended&false;
pg_meta_data は、table_name
のテーブル定義を配列として返します。
&reftitle.parameters;
connection
&pgsql.parameter.connection;
table_name
テーブルの名前。
extended
拡張メタデータを返すかどうかを表すフラグ。デフォルトは &false;。
&reftitle.returnvalues;
テーブル定義の配列を返します。
&return.falseforfailure;
&reftitle.changelog;
&Version;
&Description;
&pgsql.changelog.connection-object;
&reftitle.examples;
テーブルのメタデータを得る
';
var_dump($meta);
echo '';
}
?>
]]>
&example.outputs;
array(5) {
["num"]=>
int(1)
["type"]=>
string(7) "varchar"
["len"]=>
int(-1)
["not null"]=>
bool(false)
["has default"]=>
bool(false)
}
["year"]=>
array(5) {
["num"]=>
int(2)
["type"]=>
string(4) "int2"
["len"]=>
int(2)
["not null"]=>
bool(false)
["has default"]=>
bool(false)
}
["title"]=>
array(5) {
["num"]=>
int(3)
["type"]=>
string(7) "varchar"
["len"]=>
int(-1)
["not null"]=>
bool(false)
["has default"]=>
bool(false)
}
}
]]>
&reftitle.seealso;
pg_convert