Hi! I want to retrieve these info for a mysql table using c#
1) Complete column definitions including name, size and data type, and extra info like null/not null, unsigned,auto increament, default values, if data type is enum, the accepted values
2) All constraints - Primary/Foreign/Check/Unique
3) All indexes
I can get column related basic info using "describe table_name" query against the database.
but how to fetch all these info?
regards, Anjan