This is a new feature request:
Whenever a new breakpoint/bookmark is created - it should be visible on the slide bar used to scroll the code.
Take a look on Eclipse and Oracle SQL Developer to see their solution.
I agree with WIM. Currently I have "window list" in the window containing "browser" and "templates". Every time I want to access some project items I need to click on the window list item "project items", then dbl-click item I want to open.
And I'd like to see "Code Contents" there as well -...
I'd like to request an enchancement to the UI:
I'd like to see "Code contents" window (for currently opened PL/SQL item) in the same window as templates and browser (so that more space for PL/SQL is available and I can switch between different lists/trees of windows/objects/etc.)
Additional problem:
While selecting the data on our production server I got ORA-30757 error displayed by the PL/SQL developer. And I just did
SELECT * FROM my_table;
in the SQL Window (so no data were displayed). This might be that my access rights are limited on production - but Oracle SQL...
Query
SELECT col_1,col_2 FROM my_table;
would show:
col_1 col_2
-----------
1 a
2 b
3 c
Where my col_1 is a NUMBER and col_2 is my_parent_type:
TYPE my_type UNDER my_parent_type
(first CHAR(1)
,second DATE
,third NUMBER
)
This is a new feature request for the problem I can see in 7.1.5.1398. Probably could be exen classified as a bug.
I have some nasty code that is using custom types (objects defined as not final, then final versions and columns with such custom types - thus the table has "variable" number of...
This is a new feature request (as I can see several posts bellow this is currently not present) to have:
1) Password stored for every session (I hate to enter passwords every time I'm connecting in PL/SQL developer)
2) NLS settings that are stored per server and set when connecting (ex. to...
In the "window list" window I can see "Command Window - ...", etc.
This "Window" word is present for every of them. Would it be possible to get rid of the "Window" word from the list to save some extra space?
I had a fragment of code like:
FOR Fields IN (
SELECT x,y
FROM my_table
/*
UNION
SELECT x,y
FROM my_table2
*/
UNION
SELECT x,y
FROM my_table2
)
LOOP
NULL;
END LOOP;
I had code beautifier set to run on save. After a while I was unable to find out the commented part. It was in...
Hi,
I'm using following convention (and it cannot be used in PL/SQL developer):
1) packages/procedures/functions/etc. that are not part of my project: upper case
2) system packages are within group (1)
3) local variables starts with lower case and use camel notation later
4) Table names, column...