• In which file are saved the storedqueries? I must delete anyone. I tried to delete the plug-in from my site and re-install but storedqueries still there. Thank you

Viewing 1 replies (of 1 total)
  • I also had this problem. It’s stored in the wp_options table. You can see what is there with this query:

    SELECT * FROM wp_options WHERE option_name = ‘DatabaseBrowserQueries’

    and can remove it by running:

    DELETE FROM wp_options WHERE option_name = ‘DatabaseBrowserQueries’

Viewing 1 replies (of 1 total)
  • The topic ‘delete queries’ is closed to new replies.