java - how to get the storage engine using jdbc -
is there way storage engine of mysql table using jdbc. use metadata other table information columns names, types, primary key , indexes ... didn't find how o engine
you can use information_schema engine type, e.g.:
select engine information_schema.tables table_schema=database() , table_name='foobar';
Comments
Post a Comment