Recent content by tema

  1. T

    View SQL mode

    Hello! Where can I set case (for table name, type of fields) for the View SQL mode? -- Create table create table NAMETABLE ( field1 NUMBER, field2 NUMBER, field3 NUMBER, field4 VARCHAR2(2000) )
  2. T

    Beautifier comment

    Good afternoon! Was this feature implemented in version 14?
  3. T

    Beautifier issue

    Steps to reproduce the problem: 1. Code function get_value() return number is tmp_value number; begin tmp_value := 'X'; case when tmp_value = 'X' then tmp_value := 'Y'; /*when tmp_value = 'Y' then tmp_value := 'X';*/ end case; return null; end; 2. Use...
  4. T

    Beautifier comment

    Thank you!
  5. T

    Beautifier comment

    Please, help! By defaul Beautifier: select p.ab_field1, -- comment 1 p.abc_field2, -- comment 2 p.a_field3, -- comment 3 from some_table t where t.field3 = 1 Desired Beautifier Behavior (align fields in a table and single-line comments): select p.ab_field1, -- comment 1...
Back
Top