Help for this page

Select Code to Download


  1. or download this
      $rc = $sth->bind_col($col_num, \$col_variable);
      $rc = $sth->bind_columns(@list_of_refs_to_vars_to_bind);
    
  2. or download this
      $rc = $sth->bind_col($col_num, $col_variable);
      $rc = $sth->bind_columns(@list_to_bind);
    
  3. or download this
    my ($col_num)=@_;
    my $col_variable=\$_[1];
    
  4. or download this
    my @refs=map { \$_ } @_;