Announcement

Collapse
No announcement yet.

table als default null

Collapse
X
  • Filter
  • Time
  • Show
Clear All
new posts

  • table als default null

    Hallo,

    Ist es irgendwie moeglich, in einer Prozedur in PL/SQL eine table als default null zu deklarieren, also so:

    procedure test(my_table table default null);

    Bei mir kommt da immer eine Fehlermeldung.
    MFG,
    Nick

  • #2
    versuchs mit record-table (type)<BR>
    <BR>
    procedure test<BR>
    as<BR>
    <BR>
    type TABELERECORD is record(FELD TABELLE.FELD1%type, FELD TABELLE.FELD2%type);<BR>
    <BR>
    type TABLETYPE is table of TABELERECORD index by binary_integer;<BR>
    <BR>
    begin<BR>
    ...<BR>
    end;<BR>
    <BR&gt

    Comment

    Working...
    X