We are glad to announce the release of version 2.8 of our Browser Extender plug-in. Hope you will like it.
You can download Browser Extender 2.8 from Download section.
For detailed information, please go to News section.
You can use OnWindowClose and return 2.
This function allows you to take some action before a window is closed. You can
influence the closing of the window with the following return values:
0 = Default behavior
1 = Ask the user for confirmation (like the contents was changed)
2 = Don
Hello,
You can do it easily using Browser Extender plugin.
You can create a simply pascal extension with the following code in OnClick event:
program t1;
begin
If IDE_WindowHasEditor(True) then
IDE_SetSelectedText(IDE_GetEditorHandle, 'select * from #oowner.#oname;' + #13#10);
end.
When...
You can use Browser Extender plugin (starting from 2.7 version). Unfortunately the pascal interpreter is not multithreded so you can use the extension for a single execution.
Below you can find an extension "Execute and show elapsing time":
PL/SQL Developer Browser Extender Command
[MAIN]...
You can use Browser Extender plug-in, and create an extension which will be used in Session Window.
Below you can find an example which disconnects session (alter system disconnect session '#sid, #serial#' post_transaction immediate). Copy and paste the "code" into a separate file with ".be"...
or, you can use "Partition clause Regenerator" Browser Extender extension. You can read about it at our forum (bottom of the page). Using that extension you can for example hide system defined subpartinion names.
We have also created an extension to better support dbms_metadata.get_ddl...