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

rdbms - what exactly the undo information lives in oracle? -

bash - How do you programmatically add a bats test? -

clojure - 'get' replacement that throws exception on not found? -