Recent content by RainerW

  1. R

    Oracle Table of Object

    I have changed the package a bit, but I can't understand whats happening: create or replace package PRDS$DATA is TYPE kanaele_real IS TABLE OF INTEGER; TYPE kanaele_string IS TABLE OF VARCHAR2(254); declarations function transfer_oracle_real(i_zeitstempel TIMESTAMP, i_kanaele IN...
  2. R

    Oracle Table of Object

    I have a type kanal declared as an object >CREATE OR REPLACE TYPE kanal AS OBJECT >nummer NUMBER(7), wert VARCHAR2(200), >attribut NUMBER(1)) and a collection in a package >TYPE kanaele IS TABLE OF kanal; which is used as a parameter for a function. The documentation says, that only tables...
Back
Top