IQU - Hotkeys

Standard Hotkeys

Ctrl + E

 

Ctrl + Enter
Execute all statements in the input panel.
Ctrl + P Display the previous statement.
Ctrl + N Display the next statement. (Assuming you are viewing one of your earlier statements).
Ctrl + L Display the last used connect statement. Press again to view the previously used statement. (IQU remembers the last two connect statements).
Ctrl + I Clear the input panel.
Ctrl + O Clear the output panel.
Ctrl + Q Load a text file with statements.
F1 Displays all the commands with their syntax.
   

Special Hotkeys

Shift + Ctrl + E Execute the selected text block.
Shift + Ctrl + D Describe the selected text block.

(Assuming you have selected the name of a table).

Shift + Ctrl + C SELECT * FROM the selected text block.

(Assuming you have selected the name of a table).

Shift + Ctrl + F Show the foreign keys of the selected text block.

(Assuming you have selected the name of a table).

Ctrl + Alt + C Copy the selected block onto the clipboard. The statement will be wrapped as a Borland Delphi string.

 

SELECT

   Name

FROM

   Contact

 

will be copied as:

'SELECT '+

'   Name '+

'FROM '+

'   Contact '

Ctrl + Alt + V Paste the clipboard assuming its a Borland Delphi formatted string.

 

'SELECT '+

'   Name '+

'FROM '+

'   Contact '

 

will be pasted as:

SELECT

   Name

FROM

   Contact