Help for this page

Select Code to Download


  1. or download this
    my %row =();
    $sth->bind_columns(map {\$row{$_}} @Rcols);
    while (@values=$sth->fetchrow_arrayref) {
        @values = '';
    
  2. or download this
    $sth->bind_columns(\@row{@Rcols});