my previous company is using pl/sql developer. now in my new company, theyre not using that, so i downloaded a trial version and thinking of purchasing an annual contract before the trial period ends. im a fan of pl/sql beautifier rules feature however there is a format rule i would love to use. it would be nice if i can have the option of placing the parenthesis in the insert statement, parameter declaration, etc.
INSERT INTO dept
(deptno,
dname,
loc)
VALUES
(10,
'Accounting',
'New York');
can be changed to
INSERT INTO dept (
deptno,
dname,
loc
)
VALUES (
10,
'Accounting',
'New York'
);
or
PROCEDURE insertdept
(
p_deptno IN OUT dept.deptno%TYPE,
p_dname IN dept.dname%TYPE,
p_loc IN dept.loc%TYPE
) IS
can be changed to
PROCEDURE insertdept (
p_deptno IN OUT dept.deptno%TYPE,
p_dname IN dept.dname%TYPE,
p_loc IN dept.loc%TYPE
)
IS
thanks!
INSERT INTO dept
(deptno,
dname,
loc)
VALUES
(10,
'Accounting',
'New York');
can be changed to
INSERT INTO dept (
deptno,
dname,
loc
)
VALUES (
10,
'Accounting',
'New York'
);
or
PROCEDURE insertdept
(
p_deptno IN OUT dept.deptno%TYPE,
p_dname IN dept.dname%TYPE,
p_loc IN dept.loc%TYPE
) IS
can be changed to
PROCEDURE insertdept (
p_deptno IN OUT dept.deptno%TYPE,
p_dname IN dept.dname%TYPE,
p_loc IN dept.loc%TYPE
)
IS
thanks!