adrian_star
Member²
Hello,
I would like to report an inconsistency related to clipboard handling in PL/SQL Developer.
With this configuration, when copying columns (e.g., from the Objects window using “Copy comma separated”) and pasting into an SQL Window, the columns are inserted one per line — which works perfectly and is desirable for writing readable SQL.
For example:
Instead of pasting:
Improving this behavior would create a smoother and more predictable user experience.
Thank you for reviewing this issue.
Best regards,
Adrian
I would like to report an inconsistency related to clipboard handling in PL/SQL Developer.
Environment / ConfigurationIn Preferences: User Interface → Editor → ClipboardThe option: is disabled. |
|
With this configuration, when copying columns (e.g., from the Objects window using “Copy comma separated”) and pasting into an SQL Window, the columns are inserted one per line — which works perfectly and is desirable for writing readable SQL.
Problem scenario
However, a different behavior occurs in the following case:- Execute a SQL query.
- In the result grid, use the "Filter columns" feature.
- Copy multiple column names from the Objects window using “Copy comma separated”.
- Paste them into the column filter input field.
| The result: Only the first line is pasted into the filter field. All subsequent lines are ignored. |
Root cause
The filter input field appears to accept only a single line of text. When multiline content is pasted, only the first line is processed.Expected behavior
If the target field only supports a single line of text, pasted multiline content should automatically:- Remove line breaks
- Replace them with spaces
- Insert the full content into the field as a single line
For example:
Instead of pasting:
The field should automatically convert it to:COLUMN_A,
COLUMN_B,
COLUMN_C
COLUMN_A, COLUMN_B, COLUMN_C
Improving this behavior would create a smoother and more predictable user experience.
Thank you for reviewing this issue.
Best regards,
Adrian