Sessions window grid copy changed

6.0.3.893

When I "copy" from the result sets of the grids in a Sessions window, aditional double quotes are added.

The old behaviour was nothing been added, and lines copied as is.

I find this new behaviour extremlly unconvenient. Was this changed per a request, or accidently?

I like the old one much more as I don't have to search/replace the quotes, especially when the string copied has quotes too.
 
You will also get these by copying the content of collections in debug mode.
For now, i copy it in an empty Code/SQL Window and use the macro record/Play function to get rid of them. For the one of the next builds, I hope they're gone...
 
Open sessions window, where there's content in the subqueries tab on the bottom (say events)

click a column to select this column.

Right click -> copy

Paste in notepad.
 
Hy,

i can't reproduce this, too.
(copied from Tab "Cursors" and an own Query-Tab)
wether i copy a row or a column..
 
I think double quotes appear in a row if it contains chr(10) and you copy multiple lines from the grid.

Example:
SELECT 'a' || chr(10) || 'a' FROM dual
UNION ALL
SELECT * FROM dual;

If I select and copy both rows from the result set, the first row is enclosed in " characters.
 
Back
Top