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