| List: | General Discussion | « Previous MessageNext Message » | |
| From: | Philip Mather | Date: | February 6 2007 6:22pm |
| Subject: | Re: detecting the table type by sql? | ||
| View as plain text | |||
Marten
In more recent version you can do a simple...
SELECT ENGINE FROM TABLES WHERE TABLE_SCHEMA = "{database name}" AND
TABLE_NAME = "{table name}";
...dunno how you'd do it on older versions exactly, you can do...
SHOW TABLE STATUS WHERE Name = "BID_UNIQUE_IDS";
...but you can't select individual fields from that.
Regards,
Phil
> Hello,
>
> how can I get the type of a table (MyISAM, InnoDB, Berkeley DB) by a
> given table name with sql?
>
> Regards
> Marten
>
| Thread | ||
|---|---|---|
| • detecting the table type by sql? | Marten Lehmann | 6 Feb |
| • Re: detecting the table type by sql? | Peter Brawley | 6 Feb |
| • Re: detecting the table type by sql? | Philip Mather | 6 Feb |
| • Re: detecting the table type by sql? | Philip Mather | 6 Feb |
| • Re: detecting the table type by sql? | Rolando Edwards | 6 Feb |
