Recent content by adderek

  1. A

    Problem Report: Highlight Edit Line and Compile er

    I confirm the problems that are reported. However those are cosmetic problems and you can ignore them.
  2. A

    Feature request: Conditional compilation folding

    It seems that PL/SQL developer is unable to fold code inside $IF $THEN $END
  3. A

    Feature request: Slide bar markers

    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.
  4. A

    Feature request

    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 -...
  5. A

    Feature request: To move "Code contents"

    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.)
  6. A

    Feature request: To display custom types correctly

    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...
  7. A

    Feature request: To display custom types correctly

    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 )
  8. A

    Feature request: NLS per connection

    Would it be possible to add "Remember password" in the logon window?
  9. A

    Feature request: To display custom types correctly

    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...
  10. A

    Feature request: NLS per connection

    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...
  11. A

    Editor window: Code contents

    You are right, I haven't looked into Declaration. My assumption was that it should be directly under the proc_Parent.
  12. A

    "Window" name in the window list

    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?
  13. A

    BUG: Code beautifier messing up indentation

    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...
  14. A

    Beautifier: naming convention

    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...
Back
Top