| Priority |
Normal |
| Type | Usability Problem |
| State | Verified |
| Assignee | Gregory Shrago |
| Subsystem | SQL |
| Affected versions |
No affected versions
|
| Fixed in |
No fix versions
|
| Fixed in build |
|
|
0. Configure your JDBC console in a such way, that running it opens input script in the editor. Then stop console, restart IDEA.
1. Run JDBC console for a data source (tested Oracle).
2. The console opens, the editor opens, focus is in the editor.
3. Paste a script returning a result set in the editor. E.g.:
create type number_type as table of number;
create table number_table (c number_type) nested table c store as number_nested;
insert into number_table values (number_type (1));
select * from number_table;
drop table number_table;
drop type number_type;
Focus is in the editor.
4. Run all. (Ctrl+Enter at the moment).
5. Now focus is in the editor, and console window has Output and Result tabs.
6. Alt+F4. Focus goes to the console window.
7. Try Alt+Left/Right. It does nothing. You cannot operate with console from keyboard. That's the problem.
The cursor is actually in the hidden Input panel.