Re: [PHP] Metadata - mysqli

2009-11-24 Thread David Otton
2009/11/24 keyser soze : > mysqli_fetch_field provide result metadata > like 'column name', 'max length', 'datatype' etc > but i need the "comment" of each column > > is this possible? The table that stores data about columns is information_schema.COLUMNS. You're looking for the COLUMN_COMMENT co

[PHP] Metadata - mysqli

2009-11-24 Thread keyser soze
hi mysqli_fetch_field provide result metadata like 'column name', 'max length', 'datatype' etc but i need the "comment" of each column is this possible? (i guess it does't because i do a query, and that query brings to me columns and its values but not the comment metadata... but it would be ver