Help for this page

Select Code to Download


  1. or download this
    # create wrapper subroutines for the Oracle
    # PL/SQL package MyPackage 
    ...
    # call a function in that package
    # (passing in the DBI handle to use)
    my $result = MyPackage::my_function( $dbh, 123, 456);
    
  2. or download this
    my $result = $dbh->MyPackage::my_function( 123, 456);
    
  3. or download this
    my $result = $dbh->selectrow_arrayref('select * from blah');