Recent content by Pieter

  1. P

    cursor parameter returning record

    More details on the problem. In my case the record type is defined in a package. For example: create or replace package ArticlePkg as type tArticle is record ( ID Articles.ID%type , CODE Articles.CODE%type , NAME Articles.NAME%type ); type cArticles is ref cursor return tArticle...
  2. P

    cursor parameter returning record

    I'm using a package that has a cursor as an in/out param. The cursor is declared to return a record structure. In one of the other forums I read that the OCI doesn't support the usage of records. However does this mean that my setup won't work in combination with doa, or is there some way of...
Back
Top