I would greatly appreciate the following features in pl/sql beautifier:
1. in line comment should remain on same line and not move to the next new line. If I use -- as end of line comment it becomes a new line. If I use /**/ between code, the code following it moves to new line. If atleast the end of line comment using -- is fixed, it would be great.
2. Matching of insert or select into fields and values (wether variables or a select statement) like toad. So it is easy to see what field gets what value.
eg:
insert into table
(a, b, c,
d)
values
(aaaaaaaaa, bbbbbbbbbbbbb, cccccccccccc,
ddddddd);
instead of
insert into table
(a, b, c, d)
values
(aaaaaaaaa, bbbbbbbbbbbbb, cccccccccccc,
ddddddd);
Thanks
Aisa
1. in line comment should remain on same line and not move to the next new line. If I use -- as end of line comment it becomes a new line. If I use /**/ between code, the code following it moves to new line. If atleast the end of line comment using -- is fixed, it would be great.
2. Matching of insert or select into fields and values (wether variables or a select statement) like toad. So it is easy to see what field gets what value.
eg:
insert into table
(a, b, c,
d)
values
(aaaaaaaaa, bbbbbbbbbbbbb, cccccccccccc,
ddddddd);
instead of
insert into table
(a, b, c, d)
values
(aaaaaaaaa, bbbbbbbbbbbbb, cccccccccccc,
ddddddd);
Thanks
Aisa