DBAsupport.com Forums - Powered by vBulletin
Results 1 to 2 of 2

Thread: Returning Values Procedures?

  1. #1
    Join Date
    Feb 2001
    Posts
    286
    Hi all!

    Query:

    1.Could both Procedures return values like Functions in Oracle!

    Thanks&REgards,

    Amit.

  2. #2
    Join Date
    Apr 2001
    Location
    UK
    Posts
    137
    They can have output parameters:

    create or replace procedure get_x(p_out out varchar2) is
    begin
    p_out := 'X';
    end;

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  


Click Here to Expand Forum to Full Width