plsql - How to show the results of `open :x for <<select statement>>` in query results window in SQL Developer -


how show results of following anon block in sql developer's results grid?

declare begin   select 1 dual; end; / 

in toad remember doing like

declare begin   open :x     select 1 dual; end; / 

and entering cursor on "binding?" dialog box.

update

the answer no, can not sql developer in toad, there "workaround" used instead.

that's script, not single statement. data grids reserved single, sql select statements. put cursor on select bit , hit ctrl+enter if want results in grid.


Comments

Popular posts from this blog

javascript - RequestAnimationFrame not working when exiting fullscreen switching space on Safari -

c# - How do I get the Nth largest element from a list with duplicates, using LINQ? -

jsp - "Sending a redirect is forbidden after the response has been committed" in sendRedirect -