•  
  • Showing issue #97 of 100+ found
  •  
Back to Search
 
Priority
Normal
Type
Usability Problem 
State
Verified 
Assignee
Gregory Shrago 
Subsystem
SQL 
Affected versions
Fixed in
Fixed in build
94.405  
  • Submitted by   Alexander Chernikov
    21 months ago (18 Nov 2008 21:09)
  • Updated by   Alexander Chernikov
    6 months ago (26 Feb 2010 19:44)
  • Jira: IDEA-46740
    (history, comments)
IDEA-46740 JDBC console: on executing statements from editor make Output panel focused
0
Start JDBC console. Open input SQL in the editor and type statements there.
Ctrl+Enter to execute. Get result. Alt+4 to go into Run window.
Try to operate with Output and Result tabs from keyboard: this is impossible, since the focus is in Input panel (invisible for me).
And there is no keyboard shortcut to move focus to Output (a different issue).

It would be more useful, when the console is started with opened editor, to set focus to Output in Run window.
(Notice, this does not mean to move focus from editor! This means that Alt+4 should move focus to Output.)
Comments (2)
 
History
 
Linked Issues (0)
 
Alexander Chernikov
  Alexander Chernikov
16 Dec 2008 19:49
(20 months ago)
9572: fixed not completely. I meant the following scenario:
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.
Alexander Chernikov
  Alexander Chernikov
26 Feb 2010 19:44
(6 months ago)
94.405: fix confirmed.