Help for this page

Select Code to Download


  1. or download this
    for(0..$size-1){
       $tstr=$tstr."?,";
    ...
    }
    chop($tstr);
    chop($tv);
    
  2. or download this
    my $tstr = join ',', ("?") x @table;
    my $tv = join ',', @table;