Beefy Boxes and Bandwidth Generously Provided by pair Networks
No such thing as a small change
 
PerlMonks  

Returning multiple rows from pgplsql to DBI

by anonymized user 468275 (Curate)
on May 30, 2018 at 10:26 UTC ( [id://1215439]=perlquestion: print w/replies, xml ) Need Help??

Help for this page

Select Code to Download


  1. or download this
    sub hol_Suff {
        my $self = shift;
    ...
        my ($actmask) = $sth->fetchrow_array;
        return $actmask;
    }
    
  2. or download this
    CREATE OR REPLACE FUNCTION public."mmgb_getAllBooks"(
        IN parm_moneymgr character varying,
    ...
    ALTER FUNCTION public."mmgb_getAllBooks"(character varying, character 
    +varying)
      OWNER TO mydbo;
    COMMENT ON FUNCTION public."mmgb_getAllBooks"(character varying, chara
    +cter varying) IS 'optional filters to cater for known use cases';
    
  3. or download this
    sub mmgb_getAllBooks {
        my $self = shift;
    ...
        }
        return \@return;
    }
    
  4. or download this
            $VAR1 = [
              '(17,SPX,"S&P 500 Index",USD,"S&P 500",50,"2017-06-15 15:06:
    +47")',
              '(19,FTSE100,"FTSE 100 Index",GBP,"FTSE 100",18,"2017-07-01 
    +15:06:47")'
            ];
    

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: perlquestion [id://1215439]
Approved by marto
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others avoiding work at the Monastery: (2)
As of 2024-04-25 20:41 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found