Help for this page

Select Code to Download


  1. or download this
    sub prepex {
        my( $sql, @bindvalues ) = @_;
    ...
        return $row->[0] unless wantarray;
        return @$row;
    }
    
  2. or download this
    SELECT
        COUNT(*)
    ...
        data
    WHERE
        skey='Stuff'
    
  3. or download this
    prepex(
        q{
    ...
        },
        'Stuff',
    );