Please consider editing your post and mark it as obsolete instead. Do you want to delete post?
extend Idea Ultimate database plugin
Permanently deleted user
Created
Is it posible to extend database plugin from ultimate version of idea? I want add some functionality (button with appropriate action) to SQL Console editor.
Sure. You should search plugins/DatabaseSupport/*.jar files for META-INF/DatabasePlugin.xml and look for some <group id="Console.*"> action groups.
If you're lucky enough you'll be able to inject some custom actions there in your plugin, e.g.:
<action ...>
<add-to-group group-id="Console.XXX" anchor="last"/></aciton>