Recent content by Korinoken

  1. K

    Code completion doesn't work on package record variables

    Here is an example. I create a package with rowtype record declared. create or replace package foo is rec customer%rowtype; end foo; create or replace package body foo is begin null; end foo; Then I try to address rec variable from an anonymous block. begin foo.rec. end; Expected...
  2. K

    Code completion doesn't work on package record variables

    If record variable in package is declared as table%rowtype, code completion will not offer any column names.
Back
Top