After formatting in Toad for Oracle 9.7.2, the following code:
DECLARE
CURSOR c_a IS
SELECT 1 FROM DUAL;
BEGIN
open c_a('A','B');
END;
will be formatted like this:
/* Formatted on 2008-11-27 13:13:15 (QP5 v5.115.810.9015) -- iCARD TOAD 9.7 from 2008-11-21 -- */ DECLARE
CURSOR c_a IS
SELECT 1 FROM DUAL;
BEGIN
OPEN c_a('A','B');
END;
Case is correctly changed. However, the "OPEN c_a('A','B');" is not in indented as it should be. This is the case for all lines including "open".
The QP5 version 5119 resolves the issue.
© ALL RIGHTS RESERVED. Terms of Use Privacy Cookie Preference Center