Hi,
Hi is it possible to provide build of dashboard platform which MySQL (ODBC connection) data source uses following query to fetch the tables:
select table_schema, table_name FROM information_schema.tables where TABLE_SCHEMA='schema_name' and table_type = 'BASE TABLE';
instead of:
select table_schema, table_name FROM information_schema.tables where TABLE_SCHEMA='schema_name' and table_type = 'base table';
i.e. table type in upper case:
table_type = 'BASE TABLE';
That makes sense for me because I use PlyQL (
MySQL Gateway) as data source which is case sensitive (MySQL is not sensitive).
So as the result MySQL data source will support one more data source.
Thanks!