Recent content by Henk Jan

  1. H

    PL/SQL Beautifier and fetch into

    I am using version 7.1, but the problem exits for some time. The following PL/SQL statement is not correctly beautified: begin open c(p_id); fetch c into rec; close c; end; is beautified into begin open c(p_id); fetch c into rec; close c; end; As you can see the into part...
  2. H

    Beautifier and cursors

    In addition: the following construct does not beautify well: cursor c_avy(b_id in number ,b_startdate in date ,b_enddate in date) is select end_date from availability where id = b_id and (b_startdate between start_date and...
Back
Top