I just loaded the premium version of mydbr and I am unable to execute even the most basic queries. If I click show results in new window and hit execute - the new window spins indefinitely.
Here is a sample:
CREATE PROCEDURE sp_DBR_test()
BEGIN
select t.name as 'Name',
t.type as 'Type'
from reports_iss.tags t;
END
$$