I want to get the column data type of a mysql table.
Thought I could use MYSQLFIELD structure but it was enumerated field types.
MYSQLFIELD
Then I tried wi
First select the Database using use testDB; then execute
use testDB;
desc `testDB`.`images`; -- or SHOW FIELDS FROM images;
Output: