Help for this page

Select Code to Download


  1. or download this
    my $sth->prepare("exec DBname..stored_proc_name ?,?");
    $sth->execute($var1,'var2');
    ...
    while ($sth->fetchrow_hashref){.....
    ...
    }
    
  2. or download this
    ..spcode..
    declare @var int
    ...
    select @var as var_name_for_hash
    end
    ..endofsp..