Help for this page

Select Code to Download


  1. or download this
    warn "this_var=$this_var; that_var=$that_var\n";
    
  2. or download this
    sub lastRowNum
    {
    ...
        my ( $rowcount ) = $dbh->selectrow_array( "select count(*) from $t
    +able" );
        return $rowcount;
    }
    
  3. or download this
    sub lastRowNum
    {
    ...
        my ( $last_id ) = $dbh->selectrow_array( "select max($key_fld) fro
    +m $table" );
        return $last_id;
    }