Help for this page

Select Code to Download


  1. or download this
    
        $Command = join(' ', 
    ...
                join(', ', 
                 @CHOICE[1 .. $elements_in_array])) . '';
    
  2. or download this
    
    my $sql = "EXEC $SPROC ".
    ...
    $sth->execute(@CHOICE);
    
  3. or download this
    $sth->execute($Command);